freeclimb 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/GetDigits.md +3 -1
- data/docs/GetDigitsAllOf.md +3 -1
- data/docs/GetSpeech.md +2 -2
- data/docs/GetSpeechAllOf.md +2 -2
- data/docs/MakeCallRequest.md +3 -1
- data/docs/OutDial.md +3 -1
- data/docs/OutDialAllOf.md +3 -1
- data/docs/Play.md +3 -1
- data/docs/PlayAllOf.md +3 -1
- data/docs/Say.md +2 -2
- data/docs/SayAllOf.md +2 -2
- data/docs/SendDigits.md +3 -1
- data/docs/SendDigitsAllOf.md +3 -1
- data/lib/freeclimb/api_client.rb +1 -1
- data/lib/freeclimb/models/get_digits.rb +14 -4
- data/lib/freeclimb/models/get_digits_all_of.rb +14 -4
- data/lib/freeclimb/models/get_speech.rb +8 -8
- data/lib/freeclimb/models/get_speech_all_of.rb +8 -8
- data/lib/freeclimb/models/make_call_request.rb +14 -4
- data/lib/freeclimb/models/out_dial.rb +14 -4
- data/lib/freeclimb/models/out_dial_all_of.rb +14 -4
- data/lib/freeclimb/models/play.rb +14 -4
- data/lib/freeclimb/models/play_all_of.rb +14 -4
- data/lib/freeclimb/models/say.rb +8 -8
- data/lib/freeclimb/models/say_all_of.rb +8 -8
- data/lib/freeclimb/models/send_digits.rb +14 -4
- data/lib/freeclimb/models/send_digits_all_of.rb +14 -4
- data/lib/freeclimb/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5a21b6a4c4232634a11989f817ad275f52b00a6fc9ec0169b2acb044122e0b9
|
4
|
+
data.tar.gz: ef3a12e35b025c51f28a575b4ebaa23b1866a50fcb109541fd1e154cec30734b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b6626ce1948b6160a939a87ed301f698770a499f658fa3cdfb4ed86664b292364574c533ca8c9b8f8e9b4f02d6d116ba60724becfac5dbccadbf51714736dac
|
7
|
+
data.tar.gz: ad7f8d3501a32dc3c678792874a2257c750c164e0839dd828f0de419448f0480d2e753f0d6f19c49e578fae01422b8cb318d70ed7a63814fbab3c0be55e02c9b
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ FreeClimb is a cloud-based application programming interface (API) that puts the
|
|
5
5
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
6
6
|
|
7
7
|
- API version: 1.0.0
|
8
|
-
- Package version: 2.0.
|
8
|
+
- Package version: 2.0.2
|
9
9
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
10
10
|
|
11
11
|
## Installation
|
@@ -21,16 +21,16 @@ gem build freeclimb.gemspec
|
|
21
21
|
Then either install the gem locally:
|
22
22
|
|
23
23
|
```shell
|
24
|
-
gem install ./freeclimb-2.0.
|
24
|
+
gem install ./freeclimb-2.0.2.gem
|
25
25
|
```
|
26
26
|
|
27
|
-
(for development, run `gem install --dev ./freeclimb-2.0.
|
27
|
+
(for development, run `gem install --dev ./freeclimb-2.0.2.gem` to install the development dependencies)
|
28
28
|
|
29
29
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
30
30
|
|
31
31
|
Finally add this to the Gemfile:
|
32
32
|
|
33
|
-
gem 'freeclimb', '~> 2.0.
|
33
|
+
gem 'freeclimb', '~> 2.0.2'
|
34
34
|
|
35
35
|
### Install from Ruby gems
|
36
36
|
```shell
|
data/docs/GetDigits.md
CHANGED
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
12
12
|
**max_digits** | **Integer** | Maximum number of digits expected in the input. If the terminating digit is not entered and the caller has entered the maximum number of digits allowed, the `GetDigits` command terminates regardless of the value of `finishOnKey`. | [optional]
|
13
13
|
**min_digits** | **Integer** | Minimum number of digits expected in the input. If specified, FreeClimb will return the collected digits only if the Caller has entered at least that many digits. | [optional]
|
14
14
|
**prompts** | [**Array<PerclCommand>**](PerclCommand.md) | JSON array of PerCL commands to nest within the `GetDigits` command. The `Say`, `Play`, and `Pause` commands can be used. The nested actions are executed while FreeClimb is waiting for input from the Caller. | [optional]
|
15
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
15
16
|
|
16
17
|
## Code Sample
|
17
18
|
|
@@ -25,7 +26,8 @@ instance = Freeclimb::GetDigits.new(action_url: nil,
|
|
25
26
|
initial_timeout_ms: nil,
|
26
27
|
max_digits: nil,
|
27
28
|
min_digits: nil,
|
28
|
-
prompts: nil
|
29
|
+
prompts: nil,
|
30
|
+
privacy_mode: nil)
|
29
31
|
```
|
30
32
|
|
31
33
|
|
data/docs/GetDigitsAllOf.md
CHANGED
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
12
12
|
**max_digits** | **Integer** | Maximum number of digits expected in the input. If the terminating digit is not entered and the caller has entered the maximum number of digits allowed, the `GetDigits` command terminates regardless of the value of `finishOnKey`. | [optional]
|
13
13
|
**min_digits** | **Integer** | Minimum number of digits expected in the input. If specified, FreeClimb will return the collected digits only if the Caller has entered at least that many digits. | [optional]
|
14
14
|
**prompts** | [**Array<PerclCommand>**](PerclCommand.md) | JSON array of PerCL commands to nest within the `GetDigits` command. The `Say`, `Play`, and `Pause` commands can be used. The nested actions are executed while FreeClimb is waiting for input from the Caller. | [optional]
|
15
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
15
16
|
|
16
17
|
## Code Sample
|
17
18
|
|
@@ -25,7 +26,8 @@ instance = Freeclimb::GetDigitsAllOf.new(action_url: nil,
|
|
25
26
|
initial_timeout_ms: nil,
|
26
27
|
max_digits: nil,
|
27
28
|
min_digits: nil,
|
28
|
-
prompts: nil
|
29
|
+
prompts: nil,
|
30
|
+
privacy_mode: nil)
|
29
31
|
```
|
30
32
|
|
31
33
|
|
data/docs/GetSpeech.md
CHANGED
@@ -16,7 +16,7 @@ Name | Type | Description | Notes
|
|
16
16
|
**sensitivity_level** | **Float** | The speech recognizer supports a variable level of sound sensitivity. The sensitivityLevel attribute allows for filtering out background noise, so it is not mistaken for speech. Values are between 0.0 and 1.0 | [optional]
|
17
17
|
**speech_complete_timeout_ms** | **Integer** | Parameter `speechCompleteTimeoutMs` specifies the length of silence required following user speech before the speech recognizer finalizes a result. This timeout applies when the recognizer currently has a complete match against an active grammar. Reasonable speech complete timeout values are typically in the range of 0.3 seconds to 1.0 seconds. | [optional]
|
18
18
|
**speech_incomplete_timeout_ms** | **Integer** | Parameter `speechIncompleteTimeoutMs` specifies the length of silence following user speech after which a recognizer finalizes a result. This timeout applies when the speech prior to the silence is an incomplete match of all active grammars. Timeout `speechIncompleteTimeoutMs` is usually longer than `speechCompleteTimeoutMs` to allow users to pause mid-utterance. | [optional]
|
19
|
-
**
|
19
|
+
**privacy_mode** | **Boolean** | Parameter privacyMode will not log the `text` as required by PCI compliance. | [optional]
|
20
20
|
|
21
21
|
## Code Sample
|
22
22
|
|
@@ -35,7 +35,7 @@ instance = Freeclimb::GetSpeech.new(action_url: nil,
|
|
35
35
|
sensitivity_level: nil,
|
36
36
|
speech_complete_timeout_ms: nil,
|
37
37
|
speech_incomplete_timeout_ms: nil,
|
38
|
-
|
38
|
+
privacy_mode: nil)
|
39
39
|
```
|
40
40
|
|
41
41
|
|
data/docs/GetSpeechAllOf.md
CHANGED
@@ -16,7 +16,7 @@ Name | Type | Description | Notes
|
|
16
16
|
**sensitivity_level** | **Float** | The speech recognizer supports a variable level of sound sensitivity. The sensitivityLevel attribute allows for filtering out background noise, so it is not mistaken for speech. Values are between 0.0 and 1.0 | [optional]
|
17
17
|
**speech_complete_timeout_ms** | **Integer** | Parameter `speechCompleteTimeoutMs` specifies the length of silence required following user speech before the speech recognizer finalizes a result. This timeout applies when the recognizer currently has a complete match against an active grammar. Reasonable speech complete timeout values are typically in the range of 0.3 seconds to 1.0 seconds. | [optional]
|
18
18
|
**speech_incomplete_timeout_ms** | **Integer** | Parameter `speechIncompleteTimeoutMs` specifies the length of silence following user speech after which a recognizer finalizes a result. This timeout applies when the speech prior to the silence is an incomplete match of all active grammars. Timeout `speechIncompleteTimeoutMs` is usually longer than `speechCompleteTimeoutMs` to allow users to pause mid-utterance. | [optional]
|
19
|
-
**
|
19
|
+
**privacy_mode** | **Boolean** | Parameter privacyMode will not log the `text` as required by PCI compliance. | [optional]
|
20
20
|
|
21
21
|
## Code Sample
|
22
22
|
|
@@ -35,7 +35,7 @@ instance = Freeclimb::GetSpeechAllOf.new(action_url: nil,
|
|
35
35
|
sensitivity_level: nil,
|
36
36
|
speech_complete_timeout_ms: nil,
|
37
37
|
speech_incomplete_timeout_ms: nil,
|
38
|
-
|
38
|
+
privacy_mode: nil)
|
39
39
|
```
|
40
40
|
|
41
41
|
|
data/docs/MakeCallRequest.md
CHANGED
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
12
12
|
**if_machine_url** | **String** | This attribute specifies a URL to which FreeClimb will make a POST request when an answering machine or a fax machine is detected. This URL is required if the ifMachine flag is set to redirect. When ifMachine is set to hangup, ifMachineUrl must not be included in the request. For more information, see **ifMachineUrl example** below. | [optional]
|
13
13
|
**timeout** | **Integer** | Number of seconds that FreeClimb should allow the phone to ring before assuming there is no answer. Default is 30 seconds. Maximum allowed ring-time is determined by the target phone's provider. Note that most providers limit ring-time to 120 seconds. | [optional]
|
14
14
|
**parent_call_id** | **String** | The ID of the parent Call in the case that this new Call is meant to be treated as a child of an existing Call. This attribute should be included when possible to reduce latency when adding child calls to Conferences containing the parent Call. A call can only be used as a parent once the call is in progress or as an inbound call that is still ringing. An outbound call is considered to be in progress once the outdialConnect or outdialApiConnect webhook is invoked. An inbound call is ringing when the inbound webhook is invoked. | [optional]
|
15
|
+
**privacy_mode** | **Boolean** | Activate privacy mode in order to obscure log data that can potentially expose private information. | [optional]
|
15
16
|
|
16
17
|
## Code Sample
|
17
18
|
|
@@ -25,7 +26,8 @@ instance = Freeclimb::MakeCallRequest.new(from: nil,
|
|
25
26
|
if_machine: nil,
|
26
27
|
if_machine_url: nil,
|
27
28
|
timeout: nil,
|
28
|
-
parent_call_id: nil
|
29
|
+
parent_call_id: nil,
|
30
|
+
privacy_mode: nil)
|
29
31
|
```
|
30
32
|
|
31
33
|
|
data/docs/OutDial.md
CHANGED
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
13
13
|
**send_digits** | **String** | DTMF tones to play to the outdialed Call. This is typically used to dial a number and then dial an extension. | [optional]
|
14
14
|
**status_callback_url** | **String** | When the outdialed Call leg terminates, FreeClimb sends a `callStatus` Webhook to the `statusCallbackUrl`. This is a notification only; any PerCL command returned is ignored. | [optional]
|
15
15
|
**timeout** | **Integer** | Maximum time in seconds the `OutDial` command waits for the called party to answer the Call. When a timeout occurs, FreeClimb invokes the `callConnectUrl` Webhook to report that the out-dialed Call has ended with a status of `noAnswer`. | [optional]
|
16
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
16
17
|
|
17
18
|
## Code Sample
|
18
19
|
|
@@ -27,7 +28,8 @@ instance = Freeclimb::OutDial.new(action_url: nil,
|
|
27
28
|
if_machine_url: nil,
|
28
29
|
send_digits: nil,
|
29
30
|
status_callback_url: nil,
|
30
|
-
timeout: nil
|
31
|
+
timeout: nil,
|
32
|
+
privacy_mode: nil)
|
31
33
|
```
|
32
34
|
|
33
35
|
|
data/docs/OutDialAllOf.md
CHANGED
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
13
13
|
**send_digits** | **String** | DTMF tones to play to the outdialed Call. This is typically used to dial a number and then dial an extension. | [optional]
|
14
14
|
**status_callback_url** | **String** | When the outdialed Call leg terminates, FreeClimb sends a `callStatus` Webhook to the `statusCallbackUrl`. This is a notification only; any PerCL command returned is ignored. | [optional]
|
15
15
|
**timeout** | **Integer** | Maximum time in seconds the `OutDial` command waits for the called party to answer the Call. When a timeout occurs, FreeClimb invokes the `callConnectUrl` Webhook to report that the out-dialed Call has ended with a status of `noAnswer`. | [optional]
|
16
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
16
17
|
|
17
18
|
## Code Sample
|
18
19
|
|
@@ -27,7 +28,8 @@ instance = Freeclimb::OutDialAllOf.new(action_url: nil,
|
|
27
28
|
if_machine_url: nil,
|
28
29
|
send_digits: nil,
|
29
30
|
status_callback_url: nil,
|
30
|
-
timeout: nil
|
31
|
+
timeout: nil,
|
32
|
+
privacy_mode: nil)
|
31
33
|
```
|
32
34
|
|
33
35
|
|
data/docs/Play.md
CHANGED
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
7
7
|
**file** | **String** | RL of the audio file to be played to the caller. The URL can be the `recordingUrl` generated from the `RecordUtterance` or `StartRecordCall` PerCL commands. |
|
8
8
|
**loop** | **Integer** | Number of times the audio file is played. Specifying '0' causes the Play action to loop until the Call is hung up. | [optional]
|
9
9
|
**conference_id** | **String** | ID of the Conference the audio should be rendered to. If this is not specified, the audio is by default rendered to the caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error. | [optional]
|
10
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
10
11
|
|
11
12
|
## Code Sample
|
12
13
|
|
@@ -15,7 +16,8 @@ require 'freeclimb'
|
|
15
16
|
|
16
17
|
instance = Freeclimb::Play.new(file: nil,
|
17
18
|
loop: nil,
|
18
|
-
conference_id: nil
|
19
|
+
conference_id: nil,
|
20
|
+
privacy_mode: nil)
|
19
21
|
```
|
20
22
|
|
21
23
|
|
data/docs/PlayAllOf.md
CHANGED
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
7
7
|
**file** | **String** | RL of the audio file to be played to the caller. The URL can be the `recordingUrl` generated from the `RecordUtterance` or `StartRecordCall` PerCL commands. |
|
8
8
|
**loop** | **Integer** | Number of times the audio file is played. Specifying '0' causes the Play action to loop until the Call is hung up. | [optional]
|
9
9
|
**conference_id** | **String** | ID of the Conference the audio should be rendered to. If this is not specified, the audio is by default rendered to the caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error. | [optional]
|
10
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
10
11
|
|
11
12
|
## Code Sample
|
12
13
|
|
@@ -15,7 +16,8 @@ require 'freeclimb'
|
|
15
16
|
|
16
17
|
instance = Freeclimb::PlayAllOf.new(file: nil,
|
17
18
|
loop: nil,
|
18
|
-
conference_id: nil
|
19
|
+
conference_id: nil,
|
20
|
+
privacy_mode: nil)
|
19
21
|
```
|
20
22
|
|
21
23
|
|
data/docs/Say.md
CHANGED
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|
8
8
|
**language** | **String** | Language and (by implication) the locale to use. This implies the accent and pronunciations to be usde for the TTS. The complete list of valid values for the language attribute is shown below. | [optional]
|
9
9
|
**loop** | **Integer** | Number of times the text is said. Specifying '0' causes the `Say` action to loop until the Call is hung up. | [optional]
|
10
10
|
**conference_id** | **String** | D of the Conference the speech should be rendered to. If this is not specified, the speech is by default rendered to the Caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error. | [optional]
|
11
|
-
**
|
11
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
12
12
|
|
13
13
|
## Code Sample
|
14
14
|
|
@@ -19,7 +19,7 @@ instance = Freeclimb::Say.new(text: nil,
|
|
19
19
|
language: nil,
|
20
20
|
loop: nil,
|
21
21
|
conference_id: nil,
|
22
|
-
|
22
|
+
privacy_mode: nil)
|
23
23
|
```
|
24
24
|
|
25
25
|
|
data/docs/SayAllOf.md
CHANGED
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|
8
8
|
**language** | **String** | Language and (by implication) the locale to use. This implies the accent and pronunciations to be usde for the TTS. The complete list of valid values for the language attribute is shown below. | [optional]
|
9
9
|
**loop** | **Integer** | Number of times the text is said. Specifying '0' causes the `Say` action to loop until the Call is hung up. | [optional]
|
10
10
|
**conference_id** | **String** | D of the Conference the speech should be rendered to. If this is not specified, the speech is by default rendered to the Caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error. | [optional]
|
11
|
-
**
|
11
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
12
12
|
|
13
13
|
## Code Sample
|
14
14
|
|
@@ -19,7 +19,7 @@ instance = Freeclimb::SayAllOf.new(text: nil,
|
|
19
19
|
language: nil,
|
20
20
|
loop: nil,
|
21
21
|
conference_id: nil,
|
22
|
-
|
22
|
+
privacy_mode: nil)
|
23
23
|
```
|
24
24
|
|
25
25
|
|
data/docs/SendDigits.md
CHANGED
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**digits** | **String** | String containing the digits to be played. The string cannot be empty and can include any digit, plus `#`, or `*`, and allows embedding specification for delay or pause between the output of individual digits. |
|
8
8
|
**pause_ms** | **Integer** | Pause between digits in milliseconds. Valid values are 100-1000 milliseconds and will be adjusted by FreeClimb to satisfy the constraint. | [optional]
|
9
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
9
10
|
|
10
11
|
## Code Sample
|
11
12
|
|
@@ -13,7 +14,8 @@ Name | Type | Description | Notes
|
|
13
14
|
require 'freeclimb'
|
14
15
|
|
15
16
|
instance = Freeclimb::SendDigits.new(digits: nil,
|
16
|
-
pause_ms: nil
|
17
|
+
pause_ms: nil,
|
18
|
+
privacy_mode: nil)
|
17
19
|
```
|
18
20
|
|
19
21
|
|
data/docs/SendDigitsAllOf.md
CHANGED
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**digits** | **String** | String containing the digits to be played. The string cannot be empty and can include any digit, plus `#`, or `*`, and allows embedding specification for delay or pause between the output of individual digits. |
|
8
8
|
**pause_ms** | **Integer** | Pause between digits in milliseconds. Valid values are 100-1000 milliseconds and will be adjusted by FreeClimb to satisfy the constraint. | [optional]
|
9
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
9
10
|
|
10
11
|
## Code Sample
|
11
12
|
|
@@ -13,7 +14,8 @@ Name | Type | Description | Notes
|
|
13
14
|
require 'freeclimb'
|
14
15
|
|
15
16
|
instance = Freeclimb::SendDigitsAllOf.new(digits: nil,
|
16
|
-
pause_ms: nil
|
17
|
+
pause_ms: nil,
|
18
|
+
privacy_mode: nil)
|
17
19
|
```
|
18
20
|
|
19
21
|
|
data/lib/freeclimb/api_client.rb
CHANGED
@@ -30,7 +30,7 @@ module Freeclimb
|
|
30
30
|
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
|
31
31
|
def initialize(config = Configuration.default)
|
32
32
|
@config = config
|
33
|
-
@user_agent = "FreeClimbSDK/2.0.
|
33
|
+
@user_agent = "FreeClimbSDK/2.0.2/ruby"
|
34
34
|
@default_headers = {
|
35
35
|
'Content-Type' => 'application/json',
|
36
36
|
'User-Agent' => @user_agent
|
@@ -39,6 +39,9 @@ module Freeclimb
|
|
39
39
|
# JSON array of PerCL commands to nest within the `GetDigits` command. The `Say`, `Play`, and `Pause` commands can be used. The nested actions are executed while FreeClimb is waiting for input from the Caller.
|
40
40
|
attr_accessor :prompts
|
41
41
|
|
42
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
43
|
+
attr_accessor :privacy_mode
|
44
|
+
|
42
45
|
# Attribute mapping from ruby-style variable name to JSON key.
|
43
46
|
def self.attribute_map
|
44
47
|
{
|
@@ -49,7 +52,8 @@ module Freeclimb
|
|
49
52
|
:'initial_timeout_ms' => :'initialTimeoutMs',
|
50
53
|
:'max_digits' => :'maxDigits',
|
51
54
|
:'min_digits' => :'minDigits',
|
52
|
-
:'prompts' => :'prompts'
|
55
|
+
:'prompts' => :'prompts',
|
56
|
+
:'privacy_mode' => :'privacyMode'
|
53
57
|
}
|
54
58
|
end
|
55
59
|
|
@@ -63,7 +67,8 @@ module Freeclimb
|
|
63
67
|
:'initial_timeout_ms' => :'String',
|
64
68
|
:'max_digits' => :'Integer',
|
65
69
|
:'min_digits' => :'Integer',
|
66
|
-
:'prompts' => :'Array<PerclCommand>'
|
70
|
+
:'prompts' => :'Array<PerclCommand>',
|
71
|
+
:'privacy_mode' => :'Boolean'
|
67
72
|
}
|
68
73
|
end
|
69
74
|
|
@@ -132,6 +137,10 @@ module Freeclimb
|
|
132
137
|
self.prompts = value
|
133
138
|
end
|
134
139
|
end
|
140
|
+
|
141
|
+
if attributes.key?(:'privacy_mode')
|
142
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
143
|
+
end
|
135
144
|
end
|
136
145
|
|
137
146
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -164,7 +173,8 @@ module Freeclimb
|
|
164
173
|
initial_timeout_ms == o.initial_timeout_ms &&
|
165
174
|
max_digits == o.max_digits &&
|
166
175
|
min_digits == o.min_digits &&
|
167
|
-
prompts == o.prompts &&
|
176
|
+
prompts == o.prompts &&
|
177
|
+
privacy_mode == o.privacy_mode && super(o)
|
168
178
|
end
|
169
179
|
|
170
180
|
# @see the `==` method
|
@@ -176,7 +186,7 @@ module Freeclimb
|
|
176
186
|
# Calculates hash code according to all attributes.
|
177
187
|
# @return [Integer] Hash code
|
178
188
|
def hash
|
179
|
-
[action_url, digit_timeout_ms, finish_on_key, flush_buffer, initial_timeout_ms, max_digits, min_digits, prompts].hash
|
189
|
+
[action_url, digit_timeout_ms, finish_on_key, flush_buffer, initial_timeout_ms, max_digits, min_digits, prompts, privacy_mode].hash
|
180
190
|
end
|
181
191
|
|
182
192
|
# Builds the object from hash
|
@@ -38,6 +38,9 @@ module Freeclimb
|
|
38
38
|
# JSON array of PerCL commands to nest within the `GetDigits` command. The `Say`, `Play`, and `Pause` commands can be used. The nested actions are executed while FreeClimb is waiting for input from the Caller.
|
39
39
|
attr_accessor :prompts
|
40
40
|
|
41
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
42
|
+
attr_accessor :privacy_mode
|
43
|
+
|
41
44
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
45
|
def self.attribute_map
|
43
46
|
{
|
@@ -48,7 +51,8 @@ module Freeclimb
|
|
48
51
|
:'initial_timeout_ms' => :'initialTimeoutMs',
|
49
52
|
:'max_digits' => :'maxDigits',
|
50
53
|
:'min_digits' => :'minDigits',
|
51
|
-
:'prompts' => :'prompts'
|
54
|
+
:'prompts' => :'prompts',
|
55
|
+
:'privacy_mode' => :'privacyMode'
|
52
56
|
}
|
53
57
|
end
|
54
58
|
|
@@ -62,7 +66,8 @@ module Freeclimb
|
|
62
66
|
:'initial_timeout_ms' => :'String',
|
63
67
|
:'max_digits' => :'Integer',
|
64
68
|
:'min_digits' => :'Integer',
|
65
|
-
:'prompts' => :'Array<PerclCommand>'
|
69
|
+
:'prompts' => :'Array<PerclCommand>',
|
70
|
+
:'privacy_mode' => :'Boolean'
|
66
71
|
}
|
67
72
|
end
|
68
73
|
|
@@ -120,6 +125,10 @@ module Freeclimb
|
|
120
125
|
self.prompts = value
|
121
126
|
end
|
122
127
|
end
|
128
|
+
|
129
|
+
if attributes.key?(:'privacy_mode')
|
130
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
131
|
+
end
|
123
132
|
end
|
124
133
|
|
125
134
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -152,7 +161,8 @@ module Freeclimb
|
|
152
161
|
initial_timeout_ms == o.initial_timeout_ms &&
|
153
162
|
max_digits == o.max_digits &&
|
154
163
|
min_digits == o.min_digits &&
|
155
|
-
prompts == o.prompts
|
164
|
+
prompts == o.prompts &&
|
165
|
+
privacy_mode == o.privacy_mode
|
156
166
|
end
|
157
167
|
|
158
168
|
# @see the `==` method
|
@@ -164,7 +174,7 @@ module Freeclimb
|
|
164
174
|
# Calculates hash code according to all attributes.
|
165
175
|
# @return [Integer] Hash code
|
166
176
|
def hash
|
167
|
-
[action_url, digit_timeout_ms, finish_on_key, flush_buffer, initial_timeout_ms, max_digits, min_digits, prompts].hash
|
177
|
+
[action_url, digit_timeout_ms, finish_on_key, flush_buffer, initial_timeout_ms, max_digits, min_digits, prompts, privacy_mode].hash
|
168
178
|
end
|
169
179
|
|
170
180
|
# Builds the object from hash
|
@@ -51,8 +51,8 @@ module Freeclimb
|
|
51
51
|
# Parameter `speechIncompleteTimeoutMs` specifies the length of silence following user speech after which a recognizer finalizes a result. This timeout applies when the speech prior to the silence is an incomplete match of all active grammars. Timeout `speechIncompleteTimeoutMs` is usually longer than `speechCompleteTimeoutMs` to allow users to pause mid-utterance.
|
52
52
|
attr_accessor :speech_incomplete_timeout_ms
|
53
53
|
|
54
|
-
# Parameter
|
55
|
-
attr_accessor :
|
54
|
+
# Parameter privacyMode will not log the `text` as required by PCI compliance.
|
55
|
+
attr_accessor :privacy_mode
|
56
56
|
|
57
57
|
# Attribute mapping from ruby-style variable name to JSON key.
|
58
58
|
def self.attribute_map
|
@@ -69,7 +69,7 @@ module Freeclimb
|
|
69
69
|
:'sensitivity_level' => :'sensitivityLevel',
|
70
70
|
:'speech_complete_timeout_ms' => :'speechCompleteTimeoutMs',
|
71
71
|
:'speech_incomplete_timeout_ms' => :'speechIncompleteTimeoutMs',
|
72
|
-
:'
|
72
|
+
:'privacy_mode' => :'privacyMode'
|
73
73
|
}
|
74
74
|
end
|
75
75
|
|
@@ -88,7 +88,7 @@ module Freeclimb
|
|
88
88
|
:'sensitivity_level' => :'Float',
|
89
89
|
:'speech_complete_timeout_ms' => :'Integer',
|
90
90
|
:'speech_incomplete_timeout_ms' => :'Integer',
|
91
|
-
:'
|
91
|
+
:'privacy_mode' => :'Boolean'
|
92
92
|
}
|
93
93
|
end
|
94
94
|
|
@@ -174,8 +174,8 @@ module Freeclimb
|
|
174
174
|
self.speech_incomplete_timeout_ms = attributes[:'speech_incomplete_timeout_ms']
|
175
175
|
end
|
176
176
|
|
177
|
-
if attributes.key?(:'
|
178
|
-
self.
|
177
|
+
if attributes.key?(:'privacy_mode')
|
178
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
179
179
|
end
|
180
180
|
end
|
181
181
|
|
@@ -219,7 +219,7 @@ module Freeclimb
|
|
219
219
|
sensitivity_level == o.sensitivity_level &&
|
220
220
|
speech_complete_timeout_ms == o.speech_complete_timeout_ms &&
|
221
221
|
speech_incomplete_timeout_ms == o.speech_incomplete_timeout_ms &&
|
222
|
-
|
222
|
+
privacy_mode == o.privacy_mode && super(o)
|
223
223
|
end
|
224
224
|
|
225
225
|
# @see the `==` method
|
@@ -231,7 +231,7 @@ module Freeclimb
|
|
231
231
|
# Calculates hash code according to all attributes.
|
232
232
|
# @return [Integer] Hash code
|
233
233
|
def hash
|
234
|
-
[action_url, grammar_type, grammar_file, grammar_rule, play_beep, prompts, no_input_timeout_ms, recognition_timeout_ms, confidence_threshold, sensitivity_level, speech_complete_timeout_ms, speech_incomplete_timeout_ms,
|
234
|
+
[action_url, grammar_type, grammar_file, grammar_rule, play_beep, prompts, no_input_timeout_ms, recognition_timeout_ms, confidence_threshold, sensitivity_level, speech_complete_timeout_ms, speech_incomplete_timeout_ms, privacy_mode].hash
|
235
235
|
end
|
236
236
|
|
237
237
|
# Builds the object from hash
|
@@ -50,8 +50,8 @@ module Freeclimb
|
|
50
50
|
# Parameter `speechIncompleteTimeoutMs` specifies the length of silence following user speech after which a recognizer finalizes a result. This timeout applies when the speech prior to the silence is an incomplete match of all active grammars. Timeout `speechIncompleteTimeoutMs` is usually longer than `speechCompleteTimeoutMs` to allow users to pause mid-utterance.
|
51
51
|
attr_accessor :speech_incomplete_timeout_ms
|
52
52
|
|
53
|
-
# Parameter
|
54
|
-
attr_accessor :
|
53
|
+
# Parameter privacyMode will not log the `text` as required by PCI compliance.
|
54
|
+
attr_accessor :privacy_mode
|
55
55
|
|
56
56
|
# Attribute mapping from ruby-style variable name to JSON key.
|
57
57
|
def self.attribute_map
|
@@ -68,7 +68,7 @@ module Freeclimb
|
|
68
68
|
:'sensitivity_level' => :'sensitivityLevel',
|
69
69
|
:'speech_complete_timeout_ms' => :'speechCompleteTimeoutMs',
|
70
70
|
:'speech_incomplete_timeout_ms' => :'speechIncompleteTimeoutMs',
|
71
|
-
:'
|
71
|
+
:'privacy_mode' => :'privacyMode'
|
72
72
|
}
|
73
73
|
end
|
74
74
|
|
@@ -87,7 +87,7 @@ module Freeclimb
|
|
87
87
|
:'sensitivity_level' => :'Float',
|
88
88
|
:'speech_complete_timeout_ms' => :'Integer',
|
89
89
|
:'speech_incomplete_timeout_ms' => :'Integer',
|
90
|
-
:'
|
90
|
+
:'privacy_mode' => :'Boolean'
|
91
91
|
}
|
92
92
|
end
|
93
93
|
|
@@ -162,8 +162,8 @@ module Freeclimb
|
|
162
162
|
self.speech_incomplete_timeout_ms = attributes[:'speech_incomplete_timeout_ms']
|
163
163
|
end
|
164
164
|
|
165
|
-
if attributes.key?(:'
|
166
|
-
self.
|
165
|
+
if attributes.key?(:'privacy_mode')
|
166
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
167
167
|
end
|
168
168
|
end
|
169
169
|
|
@@ -207,7 +207,7 @@ module Freeclimb
|
|
207
207
|
sensitivity_level == o.sensitivity_level &&
|
208
208
|
speech_complete_timeout_ms == o.speech_complete_timeout_ms &&
|
209
209
|
speech_incomplete_timeout_ms == o.speech_incomplete_timeout_ms &&
|
210
|
-
|
210
|
+
privacy_mode == o.privacy_mode
|
211
211
|
end
|
212
212
|
|
213
213
|
# @see the `==` method
|
@@ -219,7 +219,7 @@ module Freeclimb
|
|
219
219
|
# Calculates hash code according to all attributes.
|
220
220
|
# @return [Integer] Hash code
|
221
221
|
def hash
|
222
|
-
[action_url, grammar_type, grammar_file, grammar_rule, play_beep, prompts, no_input_timeout_ms, recognition_timeout_ms, confidence_threshold, sensitivity_level, speech_complete_timeout_ms, speech_incomplete_timeout_ms,
|
222
|
+
[action_url, grammar_type, grammar_file, grammar_rule, play_beep, prompts, no_input_timeout_ms, recognition_timeout_ms, confidence_threshold, sensitivity_level, speech_complete_timeout_ms, speech_incomplete_timeout_ms, privacy_mode].hash
|
223
223
|
end
|
224
224
|
|
225
225
|
# Builds the object from hash
|
@@ -38,6 +38,9 @@ module Freeclimb
|
|
38
38
|
# The ID of the parent Call in the case that this new Call is meant to be treated as a child of an existing Call. This attribute should be included when possible to reduce latency when adding child calls to Conferences containing the parent Call. A call can only be used as a parent once the call is in progress or as an inbound call that is still ringing. An outbound call is considered to be in progress once the outdialConnect or outdialApiConnect webhook is invoked. An inbound call is ringing when the inbound webhook is invoked.
|
39
39
|
attr_accessor :parent_call_id
|
40
40
|
|
41
|
+
# Activate privacy mode in order to obscure log data that can potentially expose private information.
|
42
|
+
attr_accessor :privacy_mode
|
43
|
+
|
41
44
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
45
|
def self.attribute_map
|
43
46
|
{
|
@@ -48,7 +51,8 @@ module Freeclimb
|
|
48
51
|
:'if_machine' => :'ifMachine',
|
49
52
|
:'if_machine_url' => :'ifMachineUrl',
|
50
53
|
:'timeout' => :'timeout',
|
51
|
-
:'parent_call_id' => :'parentCallId'
|
54
|
+
:'parent_call_id' => :'parentCallId',
|
55
|
+
:'privacy_mode' => :'privacyMode'
|
52
56
|
}
|
53
57
|
end
|
54
58
|
|
@@ -62,7 +66,8 @@ module Freeclimb
|
|
62
66
|
:'if_machine' => :'String',
|
63
67
|
:'if_machine_url' => :'String',
|
64
68
|
:'timeout' => :'Integer',
|
65
|
-
:'parent_call_id' => :'String'
|
69
|
+
:'parent_call_id' => :'String',
|
70
|
+
:'privacy_mode' => :'Boolean'
|
66
71
|
}
|
67
72
|
end
|
68
73
|
|
@@ -118,6 +123,10 @@ module Freeclimb
|
|
118
123
|
if attributes.key?(:'parent_call_id')
|
119
124
|
self.parent_call_id = attributes[:'parent_call_id']
|
120
125
|
end
|
126
|
+
|
127
|
+
if attributes.key?(:'privacy_mode')
|
128
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
129
|
+
end
|
121
130
|
end
|
122
131
|
|
123
132
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -160,7 +169,8 @@ module Freeclimb
|
|
160
169
|
if_machine == o.if_machine &&
|
161
170
|
if_machine_url == o.if_machine_url &&
|
162
171
|
timeout == o.timeout &&
|
163
|
-
parent_call_id == o.parent_call_id
|
172
|
+
parent_call_id == o.parent_call_id &&
|
173
|
+
privacy_mode == o.privacy_mode
|
164
174
|
end
|
165
175
|
|
166
176
|
# @see the `==` method
|
@@ -172,7 +182,7 @@ module Freeclimb
|
|
172
182
|
# Calculates hash code according to all attributes.
|
173
183
|
# @return [Integer] Hash code
|
174
184
|
def hash
|
175
|
-
[from, to, application_id, send_digits, if_machine, if_machine_url, timeout, parent_call_id].hash
|
185
|
+
[from, to, application_id, send_digits, if_machine, if_machine_url, timeout, parent_call_id, privacy_mode].hash
|
176
186
|
end
|
177
187
|
|
178
188
|
# Builds the object from hash
|
@@ -42,6 +42,9 @@ module Freeclimb
|
|
42
42
|
# Maximum time in seconds the `OutDial` command waits for the called party to answer the Call. When a timeout occurs, FreeClimb invokes the `callConnectUrl` Webhook to report that the out-dialed Call has ended with a status of `noAnswer`.
|
43
43
|
attr_accessor :timeout
|
44
44
|
|
45
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
46
|
+
attr_accessor :privacy_mode
|
47
|
+
|
45
48
|
# Attribute mapping from ruby-style variable name to JSON key.
|
46
49
|
def self.attribute_map
|
47
50
|
{
|
@@ -53,7 +56,8 @@ module Freeclimb
|
|
53
56
|
:'if_machine_url' => :'ifMachineUrl',
|
54
57
|
:'send_digits' => :'sendDigits',
|
55
58
|
:'status_callback_url' => :'statusCallbackUrl',
|
56
|
-
:'timeout' => :'timeout'
|
59
|
+
:'timeout' => :'timeout',
|
60
|
+
:'privacy_mode' => :'privacyMode'
|
57
61
|
}
|
58
62
|
end
|
59
63
|
|
@@ -68,7 +72,8 @@ module Freeclimb
|
|
68
72
|
:'if_machine_url' => :'String',
|
69
73
|
:'send_digits' => :'String',
|
70
74
|
:'status_callback_url' => :'String',
|
71
|
-
:'timeout' => :'Integer'
|
75
|
+
:'timeout' => :'Integer',
|
76
|
+
:'privacy_mode' => :'Boolean'
|
72
77
|
}
|
73
78
|
end
|
74
79
|
|
@@ -139,6 +144,10 @@ module Freeclimb
|
|
139
144
|
if attributes.key?(:'timeout')
|
140
145
|
self.timeout = attributes[:'timeout']
|
141
146
|
end
|
147
|
+
|
148
|
+
if attributes.key?(:'privacy_mode')
|
149
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
150
|
+
end
|
142
151
|
end
|
143
152
|
|
144
153
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -187,7 +196,8 @@ module Freeclimb
|
|
187
196
|
if_machine_url == o.if_machine_url &&
|
188
197
|
send_digits == o.send_digits &&
|
189
198
|
status_callback_url == o.status_callback_url &&
|
190
|
-
timeout == o.timeout &&
|
199
|
+
timeout == o.timeout &&
|
200
|
+
privacy_mode == o.privacy_mode && super(o)
|
191
201
|
end
|
192
202
|
|
193
203
|
# @see the `==` method
|
@@ -199,7 +209,7 @@ module Freeclimb
|
|
199
209
|
# Calculates hash code according to all attributes.
|
200
210
|
# @return [Integer] Hash code
|
201
211
|
def hash
|
202
|
-
[action_url, call_connect_url, calling_number, destination, if_machine, if_machine_url, send_digits, status_callback_url, timeout].hash
|
212
|
+
[action_url, call_connect_url, calling_number, destination, if_machine, if_machine_url, send_digits, status_callback_url, timeout, privacy_mode].hash
|
203
213
|
end
|
204
214
|
|
205
215
|
# Builds the object from hash
|
@@ -41,6 +41,9 @@ module Freeclimb
|
|
41
41
|
# Maximum time in seconds the `OutDial` command waits for the called party to answer the Call. When a timeout occurs, FreeClimb invokes the `callConnectUrl` Webhook to report that the out-dialed Call has ended with a status of `noAnswer`.
|
42
42
|
attr_accessor :timeout
|
43
43
|
|
44
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
45
|
+
attr_accessor :privacy_mode
|
46
|
+
|
44
47
|
# Attribute mapping from ruby-style variable name to JSON key.
|
45
48
|
def self.attribute_map
|
46
49
|
{
|
@@ -52,7 +55,8 @@ module Freeclimb
|
|
52
55
|
:'if_machine_url' => :'ifMachineUrl',
|
53
56
|
:'send_digits' => :'sendDigits',
|
54
57
|
:'status_callback_url' => :'statusCallbackUrl',
|
55
|
-
:'timeout' => :'timeout'
|
58
|
+
:'timeout' => :'timeout',
|
59
|
+
:'privacy_mode' => :'privacyMode'
|
56
60
|
}
|
57
61
|
end
|
58
62
|
|
@@ -67,7 +71,8 @@ module Freeclimb
|
|
67
71
|
:'if_machine_url' => :'String',
|
68
72
|
:'send_digits' => :'String',
|
69
73
|
:'status_callback_url' => :'String',
|
70
|
-
:'timeout' => :'Integer'
|
74
|
+
:'timeout' => :'Integer',
|
75
|
+
:'privacy_mode' => :'Boolean'
|
71
76
|
}
|
72
77
|
end
|
73
78
|
|
@@ -127,6 +132,10 @@ module Freeclimb
|
|
127
132
|
if attributes.key?(:'timeout')
|
128
133
|
self.timeout = attributes[:'timeout']
|
129
134
|
end
|
135
|
+
|
136
|
+
if attributes.key?(:'privacy_mode')
|
137
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
138
|
+
end
|
130
139
|
end
|
131
140
|
|
132
141
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -175,7 +184,8 @@ module Freeclimb
|
|
175
184
|
if_machine_url == o.if_machine_url &&
|
176
185
|
send_digits == o.send_digits &&
|
177
186
|
status_callback_url == o.status_callback_url &&
|
178
|
-
timeout == o.timeout
|
187
|
+
timeout == o.timeout &&
|
188
|
+
privacy_mode == o.privacy_mode
|
179
189
|
end
|
180
190
|
|
181
191
|
# @see the `==` method
|
@@ -187,7 +197,7 @@ module Freeclimb
|
|
187
197
|
# Calculates hash code according to all attributes.
|
188
198
|
# @return [Integer] Hash code
|
189
199
|
def hash
|
190
|
-
[action_url, call_connect_url, calling_number, destination, if_machine, if_machine_url, send_digits, status_callback_url, timeout].hash
|
200
|
+
[action_url, call_connect_url, calling_number, destination, if_machine, if_machine_url, send_digits, status_callback_url, timeout, privacy_mode].hash
|
191
201
|
end
|
192
202
|
|
193
203
|
# Builds the object from hash
|
@@ -24,12 +24,16 @@ module Freeclimb
|
|
24
24
|
# ID of the Conference the audio should be rendered to. If this is not specified, the audio is by default rendered to the caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error.
|
25
25
|
attr_accessor :conference_id
|
26
26
|
|
27
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
28
|
+
attr_accessor :privacy_mode
|
29
|
+
|
27
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
28
31
|
def self.attribute_map
|
29
32
|
{
|
30
33
|
:'file' => :'file',
|
31
34
|
:'loop' => :'loop',
|
32
|
-
:'conference_id' => :'conferenceId'
|
35
|
+
:'conference_id' => :'conferenceId',
|
36
|
+
:'privacy_mode' => :'privacyMode'
|
33
37
|
}
|
34
38
|
end
|
35
39
|
|
@@ -38,7 +42,8 @@ module Freeclimb
|
|
38
42
|
{
|
39
43
|
:'file' => :'String',
|
40
44
|
:'loop' => :'Integer',
|
41
|
-
:'conference_id' => :'String'
|
45
|
+
:'conference_id' => :'String',
|
46
|
+
:'privacy_mode' => :'Boolean'
|
42
47
|
}
|
43
48
|
end
|
44
49
|
|
@@ -85,6 +90,10 @@ module Freeclimb
|
|
85
90
|
if attributes.key?(:'conference_id')
|
86
91
|
self.conference_id = attributes[:'conference_id']
|
87
92
|
end
|
93
|
+
|
94
|
+
if attributes.key?(:'privacy_mode')
|
95
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
96
|
+
end
|
88
97
|
end
|
89
98
|
|
90
99
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -112,7 +121,8 @@ module Freeclimb
|
|
112
121
|
self.class == o.class &&
|
113
122
|
file == o.file &&
|
114
123
|
loop == o.loop &&
|
115
|
-
conference_id == o.conference_id &&
|
124
|
+
conference_id == o.conference_id &&
|
125
|
+
privacy_mode == o.privacy_mode && super(o)
|
116
126
|
end
|
117
127
|
|
118
128
|
# @see the `==` method
|
@@ -124,7 +134,7 @@ module Freeclimb
|
|
124
134
|
# Calculates hash code according to all attributes.
|
125
135
|
# @return [Integer] Hash code
|
126
136
|
def hash
|
127
|
-
[file, loop, conference_id].hash
|
137
|
+
[file, loop, conference_id, privacy_mode].hash
|
128
138
|
end
|
129
139
|
|
130
140
|
# Builds the object from hash
|
@@ -23,12 +23,16 @@ module Freeclimb
|
|
23
23
|
# ID of the Conference the audio should be rendered to. If this is not specified, the audio is by default rendered to the caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error.
|
24
24
|
attr_accessor :conference_id
|
25
25
|
|
26
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
27
|
+
attr_accessor :privacy_mode
|
28
|
+
|
26
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
30
|
def self.attribute_map
|
28
31
|
{
|
29
32
|
:'file' => :'file',
|
30
33
|
:'loop' => :'loop',
|
31
|
-
:'conference_id' => :'conferenceId'
|
34
|
+
:'conference_id' => :'conferenceId',
|
35
|
+
:'privacy_mode' => :'privacyMode'
|
32
36
|
}
|
33
37
|
end
|
34
38
|
|
@@ -37,7 +41,8 @@ module Freeclimb
|
|
37
41
|
{
|
38
42
|
:'file' => :'String',
|
39
43
|
:'loop' => :'Integer',
|
40
|
-
:'conference_id' => :'String'
|
44
|
+
:'conference_id' => :'String',
|
45
|
+
:'privacy_mode' => :'Boolean'
|
41
46
|
}
|
42
47
|
end
|
43
48
|
|
@@ -73,6 +78,10 @@ module Freeclimb
|
|
73
78
|
if attributes.key?(:'conference_id')
|
74
79
|
self.conference_id = attributes[:'conference_id']
|
75
80
|
end
|
81
|
+
|
82
|
+
if attributes.key?(:'privacy_mode')
|
83
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
84
|
+
end
|
76
85
|
end
|
77
86
|
|
78
87
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -100,7 +109,8 @@ module Freeclimb
|
|
100
109
|
self.class == o.class &&
|
101
110
|
file == o.file &&
|
102
111
|
loop == o.loop &&
|
103
|
-
conference_id == o.conference_id
|
112
|
+
conference_id == o.conference_id &&
|
113
|
+
privacy_mode == o.privacy_mode
|
104
114
|
end
|
105
115
|
|
106
116
|
# @see the `==` method
|
@@ -112,7 +122,7 @@ module Freeclimb
|
|
112
122
|
# Calculates hash code according to all attributes.
|
113
123
|
# @return [Integer] Hash code
|
114
124
|
def hash
|
115
|
-
[file, loop, conference_id].hash
|
125
|
+
[file, loop, conference_id, privacy_mode].hash
|
116
126
|
end
|
117
127
|
|
118
128
|
# Builds the object from hash
|
data/lib/freeclimb/models/say.rb
CHANGED
@@ -27,8 +27,8 @@ module Freeclimb
|
|
27
27
|
# D of the Conference the speech should be rendered to. If this is not specified, the speech is by default rendered to the Caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error.
|
28
28
|
attr_accessor :conference_id
|
29
29
|
|
30
|
-
# Parameter `
|
31
|
-
attr_accessor :
|
30
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
31
|
+
attr_accessor :privacy_mode
|
32
32
|
|
33
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
34
34
|
def self.attribute_map
|
@@ -37,7 +37,7 @@ module Freeclimb
|
|
37
37
|
:'language' => :'language',
|
38
38
|
:'loop' => :'loop',
|
39
39
|
:'conference_id' => :'conferenceId',
|
40
|
-
:'
|
40
|
+
:'privacy_mode' => :'privacyMode'
|
41
41
|
}
|
42
42
|
end
|
43
43
|
|
@@ -48,7 +48,7 @@ module Freeclimb
|
|
48
48
|
:'language' => :'String',
|
49
49
|
:'loop' => :'Integer',
|
50
50
|
:'conference_id' => :'String',
|
51
|
-
:'
|
51
|
+
:'privacy_mode' => :'Boolean'
|
52
52
|
}
|
53
53
|
end
|
54
54
|
|
@@ -100,8 +100,8 @@ module Freeclimb
|
|
100
100
|
self.conference_id = attributes[:'conference_id']
|
101
101
|
end
|
102
102
|
|
103
|
-
if attributes.key?(:'
|
104
|
-
self.
|
103
|
+
if attributes.key?(:'privacy_mode')
|
104
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
105
105
|
end
|
106
106
|
end
|
107
107
|
|
@@ -132,7 +132,7 @@ module Freeclimb
|
|
132
132
|
language == o.language &&
|
133
133
|
loop == o.loop &&
|
134
134
|
conference_id == o.conference_id &&
|
135
|
-
|
135
|
+
privacy_mode == o.privacy_mode && super(o)
|
136
136
|
end
|
137
137
|
|
138
138
|
# @see the `==` method
|
@@ -144,7 +144,7 @@ module Freeclimb
|
|
144
144
|
# Calculates hash code according to all attributes.
|
145
145
|
# @return [Integer] Hash code
|
146
146
|
def hash
|
147
|
-
[text, language, loop, conference_id,
|
147
|
+
[text, language, loop, conference_id, privacy_mode].hash
|
148
148
|
end
|
149
149
|
|
150
150
|
# Builds the object from hash
|
@@ -26,8 +26,8 @@ module Freeclimb
|
|
26
26
|
# D of the Conference the speech should be rendered to. If this is not specified, the speech is by default rendered to the Caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error.
|
27
27
|
attr_accessor :conference_id
|
28
28
|
|
29
|
-
# Parameter `
|
30
|
-
attr_accessor :
|
29
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
30
|
+
attr_accessor :privacy_mode
|
31
31
|
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
33
|
def self.attribute_map
|
@@ -36,7 +36,7 @@ module Freeclimb
|
|
36
36
|
:'language' => :'language',
|
37
37
|
:'loop' => :'loop',
|
38
38
|
:'conference_id' => :'conferenceId',
|
39
|
-
:'
|
39
|
+
:'privacy_mode' => :'privacyMode'
|
40
40
|
}
|
41
41
|
end
|
42
42
|
|
@@ -47,7 +47,7 @@ module Freeclimb
|
|
47
47
|
:'language' => :'String',
|
48
48
|
:'loop' => :'Integer',
|
49
49
|
:'conference_id' => :'String',
|
50
|
-
:'
|
50
|
+
:'privacy_mode' => :'Boolean'
|
51
51
|
}
|
52
52
|
end
|
53
53
|
|
@@ -88,8 +88,8 @@ module Freeclimb
|
|
88
88
|
self.conference_id = attributes[:'conference_id']
|
89
89
|
end
|
90
90
|
|
91
|
-
if attributes.key?(:'
|
92
|
-
self.
|
91
|
+
if attributes.key?(:'privacy_mode')
|
92
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
@@ -120,7 +120,7 @@ module Freeclimb
|
|
120
120
|
language == o.language &&
|
121
121
|
loop == o.loop &&
|
122
122
|
conference_id == o.conference_id &&
|
123
|
-
|
123
|
+
privacy_mode == o.privacy_mode
|
124
124
|
end
|
125
125
|
|
126
126
|
# @see the `==` method
|
@@ -132,7 +132,7 @@ module Freeclimb
|
|
132
132
|
# Calculates hash code according to all attributes.
|
133
133
|
# @return [Integer] Hash code
|
134
134
|
def hash
|
135
|
-
[text, language, loop, conference_id,
|
135
|
+
[text, language, loop, conference_id, privacy_mode].hash
|
136
136
|
end
|
137
137
|
|
138
138
|
# Builds the object from hash
|
@@ -21,11 +21,15 @@ module Freeclimb
|
|
21
21
|
# Pause between digits in milliseconds. Valid values are 100-1000 milliseconds and will be adjusted by FreeClimb to satisfy the constraint.
|
22
22
|
attr_accessor :pause_ms
|
23
23
|
|
24
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
25
|
+
attr_accessor :privacy_mode
|
26
|
+
|
24
27
|
# Attribute mapping from ruby-style variable name to JSON key.
|
25
28
|
def self.attribute_map
|
26
29
|
{
|
27
30
|
:'digits' => :'digits',
|
28
|
-
:'pause_ms' => :'pauseMs'
|
31
|
+
:'pause_ms' => :'pauseMs',
|
32
|
+
:'privacy_mode' => :'privacyMode'
|
29
33
|
}
|
30
34
|
end
|
31
35
|
|
@@ -33,7 +37,8 @@ module Freeclimb
|
|
33
37
|
def self.openapi_types
|
34
38
|
{
|
35
39
|
:'digits' => :'String',
|
36
|
-
:'pause_ms' => :'Integer'
|
40
|
+
:'pause_ms' => :'Integer',
|
41
|
+
:'privacy_mode' => :'Boolean'
|
37
42
|
}
|
38
43
|
end
|
39
44
|
|
@@ -76,6 +81,10 @@ module Freeclimb
|
|
76
81
|
if attributes.key?(:'pause_ms')
|
77
82
|
self.pause_ms = attributes[:'pause_ms']
|
78
83
|
end
|
84
|
+
|
85
|
+
if attributes.key?(:'privacy_mode')
|
86
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
87
|
+
end
|
79
88
|
end
|
80
89
|
|
81
90
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -102,7 +111,8 @@ module Freeclimb
|
|
102
111
|
return true if self.equal?(o)
|
103
112
|
self.class == o.class &&
|
104
113
|
digits == o.digits &&
|
105
|
-
pause_ms == o.pause_ms &&
|
114
|
+
pause_ms == o.pause_ms &&
|
115
|
+
privacy_mode == o.privacy_mode && super(o)
|
106
116
|
end
|
107
117
|
|
108
118
|
# @see the `==` method
|
@@ -114,7 +124,7 @@ module Freeclimb
|
|
114
124
|
# Calculates hash code according to all attributes.
|
115
125
|
# @return [Integer] Hash code
|
116
126
|
def hash
|
117
|
-
[digits, pause_ms].hash
|
127
|
+
[digits, pause_ms, privacy_mode].hash
|
118
128
|
end
|
119
129
|
|
120
130
|
# Builds the object from hash
|
@@ -20,11 +20,15 @@ module Freeclimb
|
|
20
20
|
# Pause between digits in milliseconds. Valid values are 100-1000 milliseconds and will be adjusted by FreeClimb to satisfy the constraint.
|
21
21
|
attr_accessor :pause_ms
|
22
22
|
|
23
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
24
|
+
attr_accessor :privacy_mode
|
25
|
+
|
23
26
|
# Attribute mapping from ruby-style variable name to JSON key.
|
24
27
|
def self.attribute_map
|
25
28
|
{
|
26
29
|
:'digits' => :'digits',
|
27
|
-
:'pause_ms' => :'pauseMs'
|
30
|
+
:'pause_ms' => :'pauseMs',
|
31
|
+
:'privacy_mode' => :'privacyMode'
|
28
32
|
}
|
29
33
|
end
|
30
34
|
|
@@ -32,7 +36,8 @@ module Freeclimb
|
|
32
36
|
def self.openapi_types
|
33
37
|
{
|
34
38
|
:'digits' => :'String',
|
35
|
-
:'pause_ms' => :'Integer'
|
39
|
+
:'pause_ms' => :'Integer',
|
40
|
+
:'privacy_mode' => :'Boolean'
|
36
41
|
}
|
37
42
|
end
|
38
43
|
|
@@ -64,6 +69,10 @@ module Freeclimb
|
|
64
69
|
if attributes.key?(:'pause_ms')
|
65
70
|
self.pause_ms = attributes[:'pause_ms']
|
66
71
|
end
|
72
|
+
|
73
|
+
if attributes.key?(:'privacy_mode')
|
74
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
75
|
+
end
|
67
76
|
end
|
68
77
|
|
69
78
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -90,7 +99,8 @@ module Freeclimb
|
|
90
99
|
return true if self.equal?(o)
|
91
100
|
self.class == o.class &&
|
92
101
|
digits == o.digits &&
|
93
|
-
pause_ms == o.pause_ms
|
102
|
+
pause_ms == o.pause_ms &&
|
103
|
+
privacy_mode == o.privacy_mode
|
94
104
|
end
|
95
105
|
|
96
106
|
# @see the `==` method
|
@@ -102,7 +112,7 @@ module Freeclimb
|
|
102
112
|
# Calculates hash code according to all attributes.
|
103
113
|
# @return [Integer] Hash code
|
104
114
|
def hash
|
105
|
-
[digits, pause_ms].hash
|
115
|
+
[digits, pause_ms, privacy_mode].hash
|
106
116
|
end
|
107
117
|
|
108
118
|
# Builds the object from hash
|
data/lib/freeclimb/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: freeclimb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|