twilio-ruby 6.7.1 → 6.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 40fcd99caa55549b7edc431ca3175fc950dad965
4
- data.tar.gz: 495adf34fe4bd97e63a761191c22d3210c295024
3
+ metadata.gz: 37aec8731226e8f1fb72e201f37238afeb644208
4
+ data.tar.gz: 7ca93edd7f9b3466bc70e6c34da25f184559767e
5
5
  SHA512:
6
- metadata.gz: c5a200844db95cb5d6c68763126e0dc1ea976f8a20e963cefb2805bab50cf2e749e141a910ff3cae4ff2bf0532d218628cdb47ef7546d7364eecccde78a515cf
7
- data.tar.gz: a4c5a49ac9b4b5e886c4395f6882ccd7230a76ddbbd8c73b0a539be3df1450c0fa38905574451bb5fe5ea364da71aeaec131dcda695ba75e0bd71185029ed719
6
+ metadata.gz: 8c16240f3b8e169ef9dee9b1eaf4d363cd901748a1207a2c9d631785983a683603989793cae092ed55d4e075285cac8cdebdd75fdb177368d12c0bcb49661597
7
+ data.tar.gz: c670f597c3bc5c7de93898c1372309bab764d1f945b407d8f42855f5c4f0b97299856200505d3c288346b73d435f909220372ca6ba40ebe9e25958e800d46e3d
data/CHANGES.md CHANGED
@@ -1,6 +1,58 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2023-11-06] Version 6.8.1
5
+ --------------------------
6
+ **Flex**
7
+ - Adding `provisioning_status` for Email Manager
8
+
9
+ **Intelligence**
10
+ - Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
11
+
12
+ **Messaging**
13
+ - Add DELETE support to Tollfree Verification resource
14
+
15
+ **Serverless**
16
+ - Add node18 as a valid Build runtime
17
+
18
+ **Verify**
19
+ - Update Verify TOTP maturity to GA.
20
+
21
+
22
+ [2023-10-19] Version 6.8.0
23
+ --------------------------
24
+ **Library - Chore**
25
+ - [PR #682](https://github.com/twilio/twilio-ruby/pull/682): Removing Test Related To Deprecated Endpoint - OAuth. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
26
+
27
+ **Library - Fix**
28
+ - [PR #680](https://github.com/twilio/twilio-ruby/pull/680): update validate ssl method with new endpoint. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
29
+
30
+ **Accounts**
31
+ - Updated Safelist metadata to correct the docs.
32
+ - Add Global SafeList API changes
33
+
34
+ **Api**
35
+ - Added optional parameter `CallToken` for create participant api
36
+
37
+ **Flex**
38
+ - Adding `offline_config` to Flex Configuration
39
+
40
+ **Intelligence**
41
+ - Deleted `redacted` parameter from fetching transcript in v2 **(breaking change)**
42
+
43
+ **Lookups**
44
+ - Add new `phone_number_quality_score` package to the lookup response
45
+ - Remove `disposable_phone_number_risk` package **(breaking change)**
46
+
47
+ **Messaging**
48
+ - Update US App To Person documentation with current `message_samples` requirements
49
+
50
+ **Taskrouter**
51
+ - Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
52
+ - Add `virtual_start_time` property to tasks
53
+ - Updating `task_queue_data` format from `map` to `array` in the response of bulk get endpoint of TaskQueue Real Time Statistics API **(breaking change)**
54
+
55
+
4
56
  [2023-10-05] Version 6.7.1
5
57
  --------------------------
6
58
  **Library - Chore**
data/README.md CHANGED
@@ -39,13 +39,13 @@ This library supports the following Ruby implementations:
39
39
  To install using [Bundler][bundler] grab the latest stable version:
40
40
 
41
41
  ```ruby
42
- gem 'twilio-ruby', '~> 6.7.1'
42
+ gem 'twilio-ruby', '~> 6.8.1'
43
43
  ```
44
44
 
45
45
  To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
46
46
 
47
47
  ```bash
48
- gem install twilio-ruby -v 6.7.1
48
+ gem install twilio-ruby -v 6.8.1
49
49
  ```
50
50
 
51
51
  To build and install the development branch yourself from the latest source:
@@ -95,9 +95,9 @@ module Twilio
95
95
  end
96
96
 
97
97
  ##
98
- # Validate the new SSL certificate for the Twilio API
98
+ # Validate the SSL certificates for the Twilio API
99
99
  def validate_ssl_certificate
100
- response = request('api.twilio.com', '8443', 'GET', 'https://api.twilio.com:8443/.json')
100
+ response = request('tls-test.twilio.com', '443', 'GET', 'https://tls-test.twilio.com')
101
101
  return unless response.status_code < 200 || response.status_code >= 300
102
102
 
103
103
  raise RestError.new 'Unexpected response from certificate endpoint', response
@@ -4,7 +4,7 @@
4
4
  # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
5
5
  # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
6
6
  #
7
- # Twilio - Api
7
+ # Twilio - Accounts
8
8
  # This is the public Twilio REST API.
9
9
  #
10
10
  # NOTE: This class is auto generated by OpenAPI Generator.
@@ -15,8 +15,8 @@
15
15
 
16
16
  module Twilio
17
17
  module REST
18
- class Api < ApiBase
19
- class V2010 < Version
18
+ class Accounts < AccountsBase
19
+ class V1 < Version
20
20
  class SafelistList < ListResource
21
21
  ##
22
22
  # Initialize the SafelistList
@@ -26,7 +26,7 @@ module Twilio
26
26
  super(version)
27
27
  # Path Solution
28
28
  @solution = { }
29
- @uri = "/SafeList/Numbers.json"
29
+ @uri = "/SafeList/Numbers"
30
30
 
31
31
  end
32
32
  ##
@@ -85,7 +85,7 @@ module Twilio
85
85
 
86
86
  # Provide a user friendly representation
87
87
  def to_s
88
- '#<Twilio.Api.V2010.SafelistList>'
88
+ '#<Twilio.Accounts.V1.SafelistList>'
89
89
  end
90
90
  end
91
91
 
@@ -114,7 +114,7 @@ module Twilio
114
114
  ##
115
115
  # Provide a user friendly representation
116
116
  def to_s
117
- '<Twilio.Api.V2010.SafelistPage>'
117
+ '<Twilio.Accounts.V1.SafelistPage>'
118
118
  end
119
119
  end
120
120
  class SafelistInstance < InstanceResource
@@ -153,13 +153,13 @@ module Twilio
153
153
  ##
154
154
  # Provide a user friendly representation
155
155
  def to_s
156
- "<Twilio.Api.V2010.SafelistInstance>"
156
+ "<Twilio.Accounts.V1.SafelistInstance>"
157
157
  end
158
158
 
159
159
  ##
160
160
  # Provide a detailed, user friendly representation
161
161
  def inspect
162
- "<Twilio.Api.V2010.SafelistInstance>"
162
+ "<Twilio.Accounts.V1.SafelistInstance>"
163
163
  end
164
164
  end
165
165
 
@@ -23,6 +23,7 @@ module Twilio
23
23
  @version = 'v1'
24
24
  @auth_token_promotion = nil
25
25
  @credentials = nil
26
+ @safelist = nil
26
27
  @secondary_auth_token = nil
27
28
  end
28
29
 
@@ -37,6 +38,11 @@ module Twilio
37
38
  @credentials ||= CredentialList.new self
38
39
  end
39
40
  ##
41
+ # @return [Twilio::REST::Accounts::V1::SafelistList]
42
+ def safelist
43
+ @safelist ||= SafelistList.new self
44
+ end
45
+ ##
40
46
  # @return [Twilio::REST::Accounts::V1::secondaryAuthTokenContext]
41
47
  def secondary_auth_token
42
48
  @secondary_auth_token ||= SecondaryAuthTokenContext.new self
@@ -81,6 +81,7 @@ module Twilio
81
81
  # @param [String] amd_status_callback The URL that we should call using the `amd_status_callback_method` to notify customer application whether the call was answered by human, machine or fax.
82
82
  # @param [String] amd_status_callback_method The HTTP method we should use when calling the `amd_status_callback` URL. Can be: `GET` or `POST` and the default is `POST`.
83
83
  # @param [String] trim Whether to trim any leading and trailing silence from the participant recording. Can be: `trim-silence` or `do-not-trim` and the default is `trim-silence`.
84
+ # @param [String] call_token A token string needed to invoke a forwarded call. A call_token is generated when an incoming call is received on a Twilio number. Pass an incoming call's call_token value to a forwarded call via the call_token parameter when creating a new call. A forwarded call should bear the same CallerID of the original incoming call.
84
85
  # @return [ParticipantInstance] Created ParticipantInstance
85
86
  def create(
86
87
  from: nil,
@@ -129,7 +130,8 @@ module Twilio
129
130
  machine_detection_silence_timeout: :unset,
130
131
  amd_status_callback: :unset,
131
132
  amd_status_callback_method: :unset,
132
- trim: :unset
133
+ trim: :unset,
134
+ call_token: :unset
133
135
  )
134
136
 
135
137
  data = Twilio::Values.of({
@@ -180,6 +182,7 @@ module Twilio
180
182
  'AmdStatusCallback' => amd_status_callback,
181
183
  'AmdStatusCallbackMethod' => amd_status_callback_method,
182
184
  'Trim' => trim,
185
+ 'CallToken' => call_token,
183
186
  })
184
187
 
185
188
  payload = @version.create('POST', @uri, data: data)
@@ -22,7 +22,6 @@ module Twilio
22
22
  super
23
23
  @version = '2010-04-01'
24
24
  @accounts = nil
25
- @safelist = nil
26
25
  end
27
26
 
28
27
  ##
@@ -123,11 +122,6 @@ module Twilio
123
122
  end
124
123
  end
125
124
  ##
126
- # @return [Twilio::REST::Api::V2010::SafelistList]
127
- def safelist
128
- @safelist ||= SafelistList.new self
129
- end
130
- ##
131
125
  # Provide a user friendly representation
132
126
  def to_s
133
127
  '<Twilio::REST::Api::V2010>';
@@ -177,6 +177,7 @@ module Twilio
177
177
  'flex_ui_status_report' => payload['flex_ui_status_report'],
178
178
  'agent_conv_end_methods' => payload['agent_conv_end_methods'],
179
179
  'citrix_voice_vdi' => payload['citrix_voice_vdi'],
180
+ 'offline_config' => payload['offline_config'],
180
181
  }
181
182
 
182
183
  # Context
@@ -477,6 +478,12 @@ module Twilio
477
478
  @properties['citrix_voice_vdi']
478
479
  end
479
480
 
481
+ ##
482
+ # @return [Hash] Presence and presence ttl configuration
483
+ def offline_config
484
+ @properties['offline_config']
485
+ end
486
+
480
487
  ##
481
488
  # Fetch the ConfigurationInstance
482
489
  # @param [String] ui_version The Pinned UI version of the Configuration resource to fetch.
@@ -0,0 +1,187 @@
1
+ ##
2
+ # This code was generated by
3
+ # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
4
+ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
5
+ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
6
+ #
7
+ # Twilio - Flex
8
+ # This is the public Twilio REST API.
9
+ #
10
+ # NOTE: This class is auto generated by OpenAPI Generator.
11
+ # https://openapi-generator.tech
12
+ # Do not edit the class manually.
13
+ #
14
+
15
+
16
+ module Twilio
17
+ module REST
18
+ class FlexApi < FlexApiBase
19
+ class V1 < Version
20
+ class ProvisioningStatusList < ListResource
21
+ ##
22
+ # Initialize the ProvisioningStatusList
23
+ # @param [Version] version Version that contains the resource
24
+ # @return [ProvisioningStatusList] ProvisioningStatusList
25
+ def initialize(version)
26
+ super(version)
27
+ # Path Solution
28
+ @solution = { }
29
+
30
+
31
+ end
32
+
33
+
34
+
35
+ # Provide a user friendly representation
36
+ def to_s
37
+ '#<Twilio.FlexApi.V1.ProvisioningStatusList>'
38
+ end
39
+ end
40
+
41
+
42
+ ##
43
+ #PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
44
+ class ProvisioningStatusContext < InstanceContext
45
+ ##
46
+ # Initialize the ProvisioningStatusContext
47
+ # @param [Version] version Version that contains the resource
48
+ # @return [ProvisioningStatusContext] ProvisioningStatusContext
49
+ def initialize(version)
50
+ super(version)
51
+
52
+ # Path Solution
53
+ @solution = { }
54
+ @uri = "/account/provision/status"
55
+
56
+
57
+ end
58
+ ##
59
+ # Fetch the ProvisioningStatusInstance
60
+ # @return [ProvisioningStatusInstance] Fetched ProvisioningStatusInstance
61
+ def fetch
62
+
63
+ payload = @version.fetch('GET', @uri)
64
+ ProvisioningStatusInstance.new(
65
+ @version,
66
+ payload,
67
+ )
68
+ end
69
+
70
+
71
+ ##
72
+ # Provide a user friendly representation
73
+ def to_s
74
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
75
+ "#<Twilio.FlexApi.V1.ProvisioningStatusContext #{context}>"
76
+ end
77
+
78
+ ##
79
+ # Provide a detailed, user friendly representation
80
+ def inspect
81
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
82
+ "#<Twilio.FlexApi.V1.ProvisioningStatusContext #{context}>"
83
+ end
84
+ end
85
+
86
+ class ProvisioningStatusPage < Page
87
+ ##
88
+ # Initialize the ProvisioningStatusPage
89
+ # @param [Version] version Version that contains the resource
90
+ # @param [Response] response Response from the API
91
+ # @param [Hash] solution Path solution for the resource
92
+ # @return [ProvisioningStatusPage] ProvisioningStatusPage
93
+ def initialize(version, response, solution)
94
+ super(version, response)
95
+
96
+ # Path Solution
97
+ @solution = solution
98
+ end
99
+
100
+ ##
101
+ # Build an instance of ProvisioningStatusInstance
102
+ # @param [Hash] payload Payload response from the API
103
+ # @return [ProvisioningStatusInstance] ProvisioningStatusInstance
104
+ def get_instance(payload)
105
+ ProvisioningStatusInstance.new(@version, payload)
106
+ end
107
+
108
+ ##
109
+ # Provide a user friendly representation
110
+ def to_s
111
+ '<Twilio.FlexApi.V1.ProvisioningStatusPage>'
112
+ end
113
+ end
114
+ class ProvisioningStatusInstance < InstanceResource
115
+ ##
116
+ # Initialize the ProvisioningStatusInstance
117
+ # @param [Version] version Version that contains the resource
118
+ # @param [Hash] payload payload that contains response from Twilio
119
+ # @param [String] account_sid The SID of the
120
+ # {Account}[https://www.twilio.com/docs/iam/api/account] that created this ProvisioningStatus
121
+ # resource.
122
+ # @param [String] sid The SID of the Call resource to fetch.
123
+ # @return [ProvisioningStatusInstance] ProvisioningStatusInstance
124
+ def initialize(version, payload )
125
+ super(version)
126
+
127
+ # Marshaled Properties
128
+ @properties = {
129
+ 'status' => payload['status'],
130
+ 'url' => payload['url'],
131
+ }
132
+
133
+ # Context
134
+ @instance_context = nil
135
+ @params = { }
136
+ end
137
+
138
+ ##
139
+ # Generate an instance context for the instance, the context is capable of
140
+ # performing various actions. All instance actions are proxied to the context
141
+ # @return [ProvisioningStatusContext] CallContext for this CallInstance
142
+ def context
143
+ unless @instance_context
144
+ @instance_context = ProvisioningStatusContext.new(@version )
145
+ end
146
+ @instance_context
147
+ end
148
+
149
+ ##
150
+ # @return [Status]
151
+ def status
152
+ @properties['status']
153
+ end
154
+
155
+ ##
156
+ # @return [String] The absolute URL of the resource.
157
+ def url
158
+ @properties['url']
159
+ end
160
+
161
+ ##
162
+ # Fetch the ProvisioningStatusInstance
163
+ # @return [ProvisioningStatusInstance] Fetched ProvisioningStatusInstance
164
+ def fetch
165
+
166
+ context.fetch
167
+ end
168
+
169
+ ##
170
+ # Provide a user friendly representation
171
+ def to_s
172
+ values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
173
+ "<Twilio.FlexApi.V1.ProvisioningStatusInstance #{values}>"
174
+ end
175
+
176
+ ##
177
+ # Provide a detailed, user friendly representation
178
+ def inspect
179
+ values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
180
+ "<Twilio.FlexApi.V1.ProvisioningStatusInstance #{values}>"
181
+ end
182
+ end
183
+
184
+ end
185
+ end
186
+ end
187
+ end
@@ -36,6 +36,7 @@ module Twilio
36
36
  @insights_settings_comment = nil
37
37
  @insights_user_roles = nil
38
38
  @interaction = nil
39
+ @provisioning_status = nil
39
40
  @web_channel = nil
40
41
  end
41
42
 
@@ -178,6 +179,11 @@ module Twilio
178
179
  end
179
180
  end
180
181
  ##
182
+ # @return [Twilio::REST::FlexApi::V1::provisioningStatusContext]
183
+ def provisioning_status
184
+ @provisioning_status ||= ProvisioningStatusContext.new self
185
+ end
186
+ ##
181
187
  # @param [String] sid The SID of the WebChannel resource to fetch.
182
188
  # @return [Twilio::REST::FlexApi::V1::WebChannelContext] if sid was passed.
183
189
  # @return [Twilio::REST::FlexApi::V1::WebChannelList]
@@ -60,7 +60,7 @@ module Twilio
60
60
  end
61
61
  ##
62
62
  # Fetch the MediaInstance
63
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Media. The default is `true` to access redacted media.
63
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Media. If redaction is enabled, the default is `true` to access redacted media.
64
64
  # @return [MediaInstance] Fetched MediaInstance
65
65
  def fetch(
66
66
  redacted: :unset
@@ -191,7 +191,7 @@ module Twilio
191
191
 
192
192
  ##
193
193
  # Fetch the MediaInstance
194
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Media. The default is `true` to access redacted media.
194
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Media. If redaction is enabled, the default is `true` to access redacted media.
195
195
  # @return [MediaInstance] Fetched MediaInstance
196
196
  def fetch(
197
197
  redacted: :unset
@@ -36,7 +36,7 @@ module Twilio
36
36
  # Lists OperatorResultInstance records from the API as a list.
37
37
  # Unlike stream(), this operation is eager and will load `limit` records into
38
38
  # memory before returning.
39
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
39
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
40
40
  # @param [Integer] limit Upper limit for the number of records to return. stream()
41
41
  # guarantees to never return more than limit. Default is no limit
42
42
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -56,7 +56,7 @@ module Twilio
56
56
  # Streams Instance records from the API as an Enumerable.
57
57
  # This operation lazily loads records as efficiently as possible until the limit
58
58
  # is reached.
59
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
59
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
60
60
  # @param [Integer] limit Upper limit for the number of records to return. stream()
61
61
  # guarantees to never return more than limit. Default is no limit
62
62
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -91,7 +91,7 @@ module Twilio
91
91
  ##
92
92
  # Retrieve a single page of OperatorResultInstance records from the API.
93
93
  # Request is executed immediately.
94
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
94
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
95
95
  # @param [String] page_token PageToken provided by the API
96
96
  # @param [Integer] page_number Page Number, this value is simply for client state
97
97
  # @param [Integer] page_size Number of records to return, defaults to 50
@@ -151,7 +151,7 @@ module Twilio
151
151
  end
152
152
  ##
153
153
  # Fetch the OperatorResultInstance
154
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
154
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
155
155
  # @return [OperatorResultInstance] Fetched OperatorResultInstance
156
156
  def fetch(
157
157
  redacted: :unset
@@ -240,6 +240,7 @@ module Twilio
240
240
  'predicted_probability' => payload['predicted_probability'],
241
241
  'label_probabilities' => payload['label_probabilities'],
242
242
  'extract_results' => payload['extract_results'],
243
+ 'text_generation_results' => payload['text_generation_results'],
243
244
  'transcript_sid' => payload['transcript_sid'],
244
245
  'url' => payload['url'],
245
246
  }
@@ -332,6 +333,12 @@ module Twilio
332
333
  @properties['extract_results']
333
334
  end
334
335
 
336
+ ##
337
+ # @return [Hash] Output of a text generation operator for example Conversation Sumamary.
338
+ def text_generation_results
339
+ @properties['text_generation_results']
340
+ end
341
+
335
342
  ##
336
343
  # @return [String] A 34 character string that uniquely identifies this Transcript.
337
344
  def transcript_sid
@@ -346,7 +353,7 @@ module Twilio
346
353
 
347
354
  ##
348
355
  # Fetch the OperatorResultInstance
349
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
356
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
350
357
  # @return [OperatorResultInstance] Fetched OperatorResultInstance
351
358
  def fetch(
352
359
  redacted: :unset
@@ -36,7 +36,7 @@ module Twilio
36
36
  # Lists SentenceInstance records from the API as a list.
37
37
  # Unlike stream(), this operation is eager and will load `limit` records into
38
38
  # memory before returning.
39
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. The default is `true` to access redacted sentences.
39
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. If redaction is enabled, the default is `true` to access redacted sentences.
40
40
  # @param [Integer] limit Upper limit for the number of records to return. stream()
41
41
  # guarantees to never return more than limit. Default is no limit
42
42
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -56,7 +56,7 @@ module Twilio
56
56
  # Streams Instance records from the API as an Enumerable.
57
57
  # This operation lazily loads records as efficiently as possible until the limit
58
58
  # is reached.
59
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. The default is `true` to access redacted sentences.
59
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. If redaction is enabled, the default is `true` to access redacted sentences.
60
60
  # @param [Integer] limit Upper limit for the number of records to return. stream()
61
61
  # guarantees to never return more than limit. Default is no limit
62
62
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -91,7 +91,7 @@ module Twilio
91
91
  ##
92
92
  # Retrieve a single page of SentenceInstance records from the API.
93
93
  # Request is executed immediately.
94
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. The default is `true` to access redacted sentences.
94
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. If redaction is enabled, the default is `true` to access redacted sentences.
95
95
  # @param [String] page_token PageToken provided by the API
96
96
  # @param [Integer] page_number Page Number, this value is simply for client state
97
97
  # @param [Integer] page_size Number of records to return, defaults to 50
@@ -229,16 +229,10 @@ module Twilio
229
229
 
230
230
  ##
231
231
  # Fetch the TranscriptInstance
232
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Transcript. The default is `true` to access redacted Transcript.
233
232
  # @return [TranscriptInstance] Fetched TranscriptInstance
234
- def fetch(
235
- redacted: :unset
236
- )
233
+ def fetch
237
234
 
238
- params = Twilio::Values.of({
239
- 'Redacted' => redacted,
240
- })
241
- payload = @version.fetch('GET', @uri, params: params)
235
+ payload = @version.fetch('GET', @uri)
242
236
  TranscriptInstance.new(
243
237
  @version,
244
238
  payload,
@@ -478,15 +472,10 @@ module Twilio
478
472
 
479
473
  ##
480
474
  # Fetch the TranscriptInstance
481
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Transcript. The default is `true` to access redacted Transcript.
482
475
  # @return [TranscriptInstance] Fetched TranscriptInstance
483
- def fetch(
484
- redacted: :unset
485
- )
476
+ def fetch
486
477
 
487
- context.fetch(
488
- redacted: redacted,
489
- )
478
+ context.fetch
490
479
  end
491
480
 
492
481
  ##
@@ -184,7 +184,7 @@ module Twilio
184
184
  'identity_match' => payload['identity_match'],
185
185
  'reassigned_number' => payload['reassigned_number'],
186
186
  'sms_pumping_risk' => payload['sms_pumping_risk'],
187
- 'disposable_phone_number_risk' => payload['disposable_phone_number_risk'],
187
+ 'phone_number_quality_score' => payload['phone_number_quality_score'],
188
188
  'url' => payload['url'],
189
189
  }
190
190
 
@@ -289,9 +289,9 @@ module Twilio
289
289
  end
290
290
 
291
291
  ##
292
- # @return [Hash] An object that contains information on if a mobile phone number could be a disposable or burner number.
293
- def disposable_phone_number_risk
294
- @properties['disposable_phone_number_risk']
292
+ # @return [Hash] An object that contains information of a mobile phone number quality score. Quality score will return a risk score about the phone number.
293
+ def phone_number_quality_score
294
+ @properties['phone_number_quality_score']
295
295
  end
296
296
 
297
297
  ##
@@ -36,7 +36,7 @@ module Twilio
36
36
  # @param [String] brand_registration_sid A2P Brand Registration SID
37
37
  # @param [String] description A short description of what this SMS campaign does. Min length: 40 characters. Max length: 4096 characters.
38
38
  # @param [String] message_flow Required for all Campaigns. Details around how a consumer opts-in to their campaign, therefore giving consent to receive their messages. If multiple opt-in methods can be used for the same campaign, they must all be listed. 40 character minimum. 2048 character maximum.
39
- # @param [Array[String]] message_samples Message samples, at least 1 and up to 5 sample messages (at least 2 for sole proprietor), >=20 chars, <=1024 chars each.
39
+ # @param [Array[String]] message_samples An array of sample message strings, min two and max five. Min length for each sample: 20 chars. Max length for each sample: 1024 chars.
40
40
  # @param [String] us_app_to_person_usecase A2P Campaign Use Case. Examples: [ 2FA, EMERGENCY, MARKETING..]
41
41
  # @param [Boolean] has_embedded_links Indicates that this SMS campaign will send messages that contain links.
42
42
  # @param [Boolean] has_embedded_phone Indicates that this SMS campaign will send messages that contain phone numbers.
@@ -354,7 +354,7 @@ module Twilio
354
354
  end
355
355
 
356
356
  ##
357
- # @return [Array<String>] Message samples, at least 1 and up to 5 sample messages (at least 2 for starter/sole proprietor), >=20 chars, <=1024 chars each.
357
+ # @return [Array<String>] An array of sample message strings, min two and max five. Min length for each sample: 20 chars. Max length for each sample: 1024 chars.
358
358
  def message_samples
359
359
  @properties['message_samples']
360
360
  end
@@ -237,6 +237,14 @@ module Twilio
237
237
 
238
238
 
239
239
  end
240
+ ##
241
+ # Delete the TollfreeVerificationInstance
242
+ # @return [Boolean] True if delete succeeds, false otherwise
243
+ def delete
244
+
245
+ @version.delete('DELETE', @uri)
246
+ end
247
+
240
248
  ##
241
249
  # Fetch the TollfreeVerificationInstance
242
250
  # @return [TollfreeVerificationInstance] Fetched TollfreeVerificationInstance
@@ -649,6 +657,14 @@ module Twilio
649
657
  @properties['external_reference_id']
650
658
  end
651
659
 
660
+ ##
661
+ # Delete the TollfreeVerificationInstance
662
+ # @return [Boolean] True if delete succeeds, false otherwise
663
+ def delete
664
+
665
+ context.delete
666
+ end
667
+
652
668
  ##
653
669
  # Fetch the TollfreeVerificationInstance
654
670
  # @return [TollfreeVerificationInstance] Fetched TollfreeVerificationInstance
@@ -38,13 +38,15 @@ module Twilio
38
38
  # @param [String] task_channel When MultiTasking is enabled, specify the TaskChannel by passing either its `unique_name` or `sid`. Default value is `default`.
39
39
  # @param [String] workflow_sid The SID of the Workflow that you would like to handle routing for the new Task. If there is only one Workflow defined for the Workspace that you are posting the new task to, this parameter is optional.
40
40
  # @param [String] attributes A URL-encoded JSON string with the attributes of the new task. This value is passed to the Workflow's `assignment_callback_url` when the Task is assigned to a Worker. For example: `{ \\\"task_type\\\": \\\"call\\\", \\\"twilio_call_sid\\\": \\\"CAxxx\\\", \\\"customer_ticket_number\\\": \\\"12345\\\" }`.
41
+ # @param [Time] virtual_start_time The virtual start time to assign the new task and override the default. When supplied, the new task will have this virtual start time. When not supplied, the new task will have the virtual start time equal to `date_created`. Value can't be in the future.
41
42
  # @return [TaskInstance] Created TaskInstance
42
43
  def create(
43
44
  timeout: :unset,
44
45
  priority: :unset,
45
46
  task_channel: :unset,
46
47
  workflow_sid: :unset,
47
- attributes: :unset
48
+ attributes: :unset,
49
+ virtual_start_time: :unset
48
50
  )
49
51
 
50
52
  data = Twilio::Values.of({
@@ -53,6 +55,7 @@ module Twilio
53
55
  'TaskChannel' => task_channel,
54
56
  'WorkflowSid' => workflow_sid,
55
57
  'Attributes' => attributes,
58
+ 'VirtualStartTime' => Twilio.serialize_iso8601_datetime(virtual_start_time),
56
59
  })
57
60
 
58
61
  payload = @version.create('POST', @uri, data: data)
@@ -75,7 +78,7 @@ module Twilio
75
78
  # @param [String] task_queue_sid The SID of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this SID.
76
79
  # @param [String] task_queue_name The `friendly_name` of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this friendly name.
77
80
  # @param [String] evaluate_task_attributes The attributes of the Tasks to read. Returns the Tasks that match the attributes specified in this parameter.
78
- # @param [String] ordering How to order the returned Task resources. y default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `Priority` or `DateCreated` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Multiple sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order.
81
+ # @param [String] ordering How to order the returned Task resources. By default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `DateCreated`, `Priority`, or `VirtualStartTime` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Pairings of sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order. The only ordering pairing not allowed is DateCreated and VirtualStartTime.
79
82
  # @param [Boolean] has_addons Whether to read Tasks with addons. If `true`, returns only Tasks with addons. If `false`, returns only Tasks without addons.
80
83
  # @param [Integer] limit Upper limit for the number of records to return. stream()
81
84
  # guarantees to never return more than limit. Default is no limit
@@ -111,7 +114,7 @@ module Twilio
111
114
  # @param [String] task_queue_sid The SID of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this SID.
112
115
  # @param [String] task_queue_name The `friendly_name` of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this friendly name.
113
116
  # @param [String] evaluate_task_attributes The attributes of the Tasks to read. Returns the Tasks that match the attributes specified in this parameter.
114
- # @param [String] ordering How to order the returned Task resources. y default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `Priority` or `DateCreated` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Multiple sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order.
117
+ # @param [String] ordering How to order the returned Task resources. By default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `DateCreated`, `Priority`, or `VirtualStartTime` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Pairings of sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order. The only ordering pairing not allowed is DateCreated and VirtualStartTime.
115
118
  # @param [Boolean] has_addons Whether to read Tasks with addons. If `true`, returns only Tasks with addons. If `false`, returns only Tasks without addons.
116
119
  # @param [Integer] limit Upper limit for the number of records to return. stream()
117
120
  # guarantees to never return more than limit. Default is no limit
@@ -162,7 +165,7 @@ module Twilio
162
165
  # @param [String] task_queue_sid The SID of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this SID.
163
166
  # @param [String] task_queue_name The `friendly_name` of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this friendly name.
164
167
  # @param [String] evaluate_task_attributes The attributes of the Tasks to read. Returns the Tasks that match the attributes specified in this parameter.
165
- # @param [String] ordering How to order the returned Task resources. y default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `Priority` or `DateCreated` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Multiple sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order.
168
+ # @param [String] ordering How to order the returned Task resources. By default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `DateCreated`, `Priority`, or `VirtualStartTime` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Pairings of sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order. The only ordering pairing not allowed is DateCreated and VirtualStartTime.
166
169
  # @param [Boolean] has_addons Whether to read Tasks with addons. If `true`, returns only Tasks with addons. If `false`, returns only Tasks without addons.
167
170
  # @param [String] page_token PageToken provided by the API
168
171
  # @param [Integer] page_number Page Number, this value is simply for client state
@@ -262,6 +265,7 @@ module Twilio
262
265
  # @param [String] reason The reason that the Task was canceled or completed. This parameter is required only if the Task is canceled or completed. Setting this value queues the task for deletion and logs the reason.
263
266
  # @param [String] priority The Task's new priority value. When supplied, the Task takes on the specified priority unless it matches a Workflow Target with a Priority set. Value can be 0 to 2^31^ (2,147,483,647).
264
267
  # @param [String] task_channel When MultiTasking is enabled, specify the TaskChannel with the task to update. Can be the TaskChannel's SID or its `unique_name`, such as `voice`, `sms`, or `default`.
268
+ # @param [Time] virtual_start_time The task's new virtual start time value. When supplied, the Task takes on the specified virtual start time. Value can't be in the future.
265
269
  # @param [String] if_match If provided, applies this mutation if (and only if) the [ETag](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) header of the Task matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).
266
270
  # @return [TaskInstance] Updated TaskInstance
267
271
  def update(
@@ -270,6 +274,7 @@ module Twilio
270
274
  reason: :unset,
271
275
  priority: :unset,
272
276
  task_channel: :unset,
277
+ virtual_start_time: :unset,
273
278
  if_match: :unset
274
279
  )
275
280
 
@@ -279,6 +284,7 @@ module Twilio
279
284
  'Reason' => reason,
280
285
  'Priority' => priority,
281
286
  'TaskChannel' => task_channel,
287
+ 'VirtualStartTime' => Twilio.serialize_iso8601_datetime(virtual_start_time),
282
288
  })
283
289
 
284
290
  headers = Twilio::Values.of({ 'If-Match' => if_match, })
@@ -390,6 +396,7 @@ module Twilio
390
396
  'workspace_sid' => payload['workspace_sid'],
391
397
  'url' => payload['url'],
392
398
  'links' => payload['links'],
399
+ 'virtual_start_time' => Twilio.deserialize_iso8601_datetime(payload['virtual_start_time']),
393
400
  }
394
401
 
395
402
  # Context
@@ -534,6 +541,12 @@ module Twilio
534
541
  @properties['links']
535
542
  end
536
543
 
544
+ ##
545
+ # @return [Time] The date and time in GMT indicating the ordering for routing of the Task specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
546
+ def virtual_start_time
547
+ @properties['virtual_start_time']
548
+ end
549
+
537
550
  ##
538
551
  # Delete the TaskInstance
539
552
  # @param [String] if_match If provided, deletes this Task if (and only if) the [ETag](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) header of the Task matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).
@@ -562,6 +575,7 @@ module Twilio
562
575
  # @param [String] reason The reason that the Task was canceled or completed. This parameter is required only if the Task is canceled or completed. Setting this value queues the task for deletion and logs the reason.
563
576
  # @param [String] priority The Task's new priority value. When supplied, the Task takes on the specified priority unless it matches a Workflow Target with a Priority set. Value can be 0 to 2^31^ (2,147,483,647).
564
577
  # @param [String] task_channel When MultiTasking is enabled, specify the TaskChannel with the task to update. Can be the TaskChannel's SID or its `unique_name`, such as `voice`, `sms`, or `default`.
578
+ # @param [Time] virtual_start_time The task's new virtual start time value. When supplied, the Task takes on the specified virtual start time. Value can't be in the future.
565
579
  # @param [String] if_match If provided, applies this mutation if (and only if) the [ETag](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) header of the Task matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).
566
580
  # @return [TaskInstance] Updated TaskInstance
567
581
  def update(
@@ -570,6 +584,7 @@ module Twilio
570
584
  reason: :unset,
571
585
  priority: :unset,
572
586
  task_channel: :unset,
587
+ virtual_start_time: :unset,
573
588
  if_match: :unset
574
589
  )
575
590
 
@@ -579,6 +594,7 @@ module Twilio
579
594
  reason: reason,
580
595
  priority: priority,
581
596
  task_channel: task_channel,
597
+ virtual_start_time: virtual_start_time,
582
598
  if_match: if_match,
583
599
  )
584
600
  end
@@ -0,0 +1,232 @@
1
+ ##
2
+ # This code was generated by
3
+ # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
4
+ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
5
+ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
6
+ #
7
+ # Twilio - Trusthub
8
+ # This is the public Twilio REST API.
9
+ #
10
+ # NOTE: This class is auto generated by OpenAPI Generator.
11
+ # https://openapi-generator.tech
12
+ # Do not edit the class manually.
13
+ #
14
+
15
+
16
+ module Twilio
17
+ module REST
18
+ class Trusthub < TrusthubBase
19
+ class V1 < Version
20
+ class ComplianceTollfreeInquiriesList < ListResource
21
+ ##
22
+ # Initialize the ComplianceTollfreeInquiriesList
23
+ # @param [Version] version Version that contains the resource
24
+ # @return [ComplianceTollfreeInquiriesList] ComplianceTollfreeInquiriesList
25
+ def initialize(version)
26
+ super(version)
27
+ # Path Solution
28
+ @solution = { }
29
+ @uri = "/ComplianceInquiries/Tollfree/Initialize"
30
+
31
+ end
32
+ ##
33
+ # Create the ComplianceTollfreeInquiriesInstance
34
+ # @param [String] did The Tollfree phone number to be verified
35
+ # @return [ComplianceTollfreeInquiriesInstance] Created ComplianceTollfreeInquiriesInstance
36
+ def create(
37
+ did: nil
38
+ )
39
+
40
+ data = Twilio::Values.of({
41
+ 'Did' => did,
42
+ })
43
+
44
+ payload = @version.create('POST', @uri, data: data)
45
+ ComplianceTollfreeInquiriesInstance.new(
46
+ @version,
47
+ payload,
48
+ )
49
+ end
50
+
51
+
52
+
53
+
54
+ # Provide a user friendly representation
55
+ def to_s
56
+ '#<Twilio.Trusthub.V1.ComplianceTollfreeInquiriesList>'
57
+ end
58
+ end
59
+
60
+
61
+ class ComplianceTollfreeInquiriesContext < InstanceContext
62
+ ##
63
+ # Initialize the ComplianceTollfreeInquiriesContext
64
+ # @param [Version] version Version that contains the resource
65
+ # @param [String] tollfree_id The unique TolfreeId matching the Compliance Tollfree Verification Inquiry that should be resumed or resubmitted. This value will have been returned by the initial Compliance Tollfree Verification Inquiry creation call.
66
+ # @return [ComplianceTollfreeInquiriesContext] ComplianceTollfreeInquiriesContext
67
+ def initialize(version, tollfree_id)
68
+ super(version)
69
+
70
+ # Path Solution
71
+ @solution = { tollfree_id: tollfree_id, }
72
+ @uri = "/ComplianceInquiries/Tollfree/#{@solution[:tollfree_id]}/Initialize"
73
+
74
+
75
+ end
76
+ ##
77
+ # Update the ComplianceTollfreeInquiriesInstance
78
+ # @param [String] did The Tollfree phone number to be verified
79
+ # @return [ComplianceTollfreeInquiriesInstance] Updated ComplianceTollfreeInquiriesInstance
80
+ def update(
81
+ did: nil
82
+ )
83
+
84
+ data = Twilio::Values.of({
85
+ 'Did' => did,
86
+ })
87
+
88
+ payload = @version.update('POST', @uri, data: data)
89
+ ComplianceTollfreeInquiriesInstance.new(
90
+ @version,
91
+ payload,
92
+ tollfree_id: @solution[:tollfree_id],
93
+ )
94
+ end
95
+
96
+
97
+ ##
98
+ # Provide a user friendly representation
99
+ def to_s
100
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
101
+ "#<Twilio.Trusthub.V1.ComplianceTollfreeInquiriesContext #{context}>"
102
+ end
103
+
104
+ ##
105
+ # Provide a detailed, user friendly representation
106
+ def inspect
107
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
108
+ "#<Twilio.Trusthub.V1.ComplianceTollfreeInquiriesContext #{context}>"
109
+ end
110
+ end
111
+
112
+ class ComplianceTollfreeInquiriesPage < Page
113
+ ##
114
+ # Initialize the ComplianceTollfreeInquiriesPage
115
+ # @param [Version] version Version that contains the resource
116
+ # @param [Response] response Response from the API
117
+ # @param [Hash] solution Path solution for the resource
118
+ # @return [ComplianceTollfreeInquiriesPage] ComplianceTollfreeInquiriesPage
119
+ def initialize(version, response, solution)
120
+ super(version, response)
121
+
122
+ # Path Solution
123
+ @solution = solution
124
+ end
125
+
126
+ ##
127
+ # Build an instance of ComplianceTollfreeInquiriesInstance
128
+ # @param [Hash] payload Payload response from the API
129
+ # @return [ComplianceTollfreeInquiriesInstance] ComplianceTollfreeInquiriesInstance
130
+ def get_instance(payload)
131
+ ComplianceTollfreeInquiriesInstance.new(@version, payload)
132
+ end
133
+
134
+ ##
135
+ # Provide a user friendly representation
136
+ def to_s
137
+ '<Twilio.Trusthub.V1.ComplianceTollfreeInquiriesPage>'
138
+ end
139
+ end
140
+ class ComplianceTollfreeInquiriesInstance < InstanceResource
141
+ ##
142
+ # Initialize the ComplianceTollfreeInquiriesInstance
143
+ # @param [Version] version Version that contains the resource
144
+ # @param [Hash] payload payload that contains response from Twilio
145
+ # @param [String] account_sid The SID of the
146
+ # {Account}[https://www.twilio.com/docs/iam/api/account] that created this ComplianceTollfreeInquiries
147
+ # resource.
148
+ # @param [String] sid The SID of the Call resource to fetch.
149
+ # @return [ComplianceTollfreeInquiriesInstance] ComplianceTollfreeInquiriesInstance
150
+ def initialize(version, payload , tollfree_id: nil)
151
+ super(version)
152
+
153
+ # Marshaled Properties
154
+ @properties = {
155
+ 'inquiry_id' => payload['inquiry_id'],
156
+ 'inquiry_session_token' => payload['inquiry_session_token'],
157
+ 'tollfree_id' => payload['tollfree_id'],
158
+ 'url' => payload['url'],
159
+ }
160
+
161
+ # Context
162
+ @instance_context = nil
163
+ @params = { 'tollfree_id' => tollfree_id || @properties['tollfree_id'] , }
164
+ end
165
+
166
+ ##
167
+ # Generate an instance context for the instance, the context is capable of
168
+ # performing various actions. All instance actions are proxied to the context
169
+ # @return [ComplianceTollfreeInquiriesContext] CallContext for this CallInstance
170
+ def context
171
+ unless @instance_context
172
+ @instance_context = ComplianceTollfreeInquiriesContext.new(@version , @params['tollfree_id'])
173
+ end
174
+ @instance_context
175
+ end
176
+
177
+ ##
178
+ # @return [String] The unique ID used to start an embedded compliance registration session.
179
+ def inquiry_id
180
+ @properties['inquiry_id']
181
+ end
182
+
183
+ ##
184
+ # @return [String] The session token used to start an embedded compliance registration session.
185
+ def inquiry_session_token
186
+ @properties['inquiry_session_token']
187
+ end
188
+
189
+ ##
190
+ # @return [String] The TolfreeId matching the Tollfree Profile that should be resumed or resubmitted for editing.
191
+ def tollfree_id
192
+ @properties['tollfree_id']
193
+ end
194
+
195
+ ##
196
+ # @return [String] The URL of this resource.
197
+ def url
198
+ @properties['url']
199
+ end
200
+
201
+ ##
202
+ # Update the ComplianceTollfreeInquiriesInstance
203
+ # @param [String] did The Tollfree phone number to be verified
204
+ # @return [ComplianceTollfreeInquiriesInstance] Updated ComplianceTollfreeInquiriesInstance
205
+ def update(
206
+ did: nil
207
+ )
208
+
209
+ context.update(
210
+ did: did,
211
+ )
212
+ end
213
+
214
+ ##
215
+ # Provide a user friendly representation
216
+ def to_s
217
+ values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
218
+ "<Twilio.Trusthub.V1.ComplianceTollfreeInquiriesInstance #{values}>"
219
+ end
220
+
221
+ ##
222
+ # Provide a detailed, user friendly representation
223
+ def inspect
224
+ values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
225
+ "<Twilio.Trusthub.V1.ComplianceTollfreeInquiriesInstance #{values}>"
226
+ end
227
+ end
228
+
229
+ end
230
+ end
231
+ end
232
+ end
@@ -22,6 +22,7 @@ module Twilio
22
22
  super
23
23
  @version = 'v1'
24
24
  @compliance_inquiries = nil
25
+ @compliance_tollfree_inquiries = nil
25
26
  @customer_profiles = nil
26
27
  @end_users = nil
27
28
  @end_user_types = nil
@@ -46,6 +47,20 @@ module Twilio
46
47
  end
47
48
  end
48
49
  ##
50
+ # @param [String] tollfree_id The unique TolfreeId matching the Compliance Tollfree Verification Inquiry that should be resumed or resubmitted. This value will have been returned by the initial Compliance Tollfree Verification Inquiry creation call.
51
+ # @return [Twilio::REST::Trusthub::V1::ComplianceTollfreeInquiriesContext] if tollfreeId was passed.
52
+ # @return [Twilio::REST::Trusthub::V1::ComplianceTollfreeInquiriesList]
53
+ def compliance_tollfree_inquiries(tollfree_id=:unset)
54
+ if tollfree_id.nil?
55
+ raise ArgumentError, 'tollfree_id cannot be nil'
56
+ end
57
+ if tollfree_id == :unset
58
+ @compliance_tollfree_inquiries ||= ComplianceTollfreeInquiriesList.new self
59
+ else
60
+ ComplianceTollfreeInquiriesContext.new(self, tollfree_id)
61
+ end
62
+ end
63
+ ##
49
64
  # @param [String] sid The unique string that we created to identify the Customer-Profile resource.
50
65
  # @return [Twilio::REST::Trusthub::V1::CustomerProfilesContext] if sid was passed.
51
66
  # @return [Twilio::REST::Trusthub::V1::CustomerProfilesList]
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '6.7.1'
2
+ VERSION = '6.8.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twilio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.7.1
4
+ version: 6.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twilio API Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-05 00:00:00.000000000 Z
11
+ date: 2023-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -249,6 +249,7 @@ files:
249
249
  - lib/twilio-ruby/rest/accounts/v1/credential.rb
250
250
  - lib/twilio-ruby/rest/accounts/v1/credential/aws.rb
251
251
  - lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb
252
+ - lib/twilio-ruby/rest/accounts/v1/safelist.rb
252
253
  - lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb
253
254
  - lib/twilio-ruby/rest/accounts_base.rb
254
255
  - lib/twilio-ruby/rest/api.rb
@@ -332,7 +333,6 @@ files:
332
333
  - lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb
333
334
  - lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb
334
335
  - lib/twilio-ruby/rest/api/v2010/account/validation_request.rb
335
- - lib/twilio-ruby/rest/api/v2010/safelist.rb
336
336
  - lib/twilio-ruby/rest/api_base.rb
337
337
  - lib/twilio-ruby/rest/autopilot.rb
338
338
  - lib/twilio-ruby/rest/autopilot/v1.rb
@@ -456,6 +456,7 @@ files:
456
456
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb
457
457
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb
458
458
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb
459
+ - lib/twilio-ruby/rest/flex_api/v1/provisioning_status.rb
459
460
  - lib/twilio-ruby/rest/flex_api/v1/web_channel.rb
460
461
  - lib/twilio-ruby/rest/flex_api/v2.rb
461
462
  - lib/twilio-ruby/rest/flex_api/v2/web_channels.rb
@@ -782,6 +783,7 @@ files:
782
783
  - lib/twilio-ruby/rest/trusthub.rb
783
784
  - lib/twilio-ruby/rest/trusthub/v1.rb
784
785
  - lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb
786
+ - lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb
785
787
  - lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb
786
788
  - lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb
787
789
  - lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb