twilio-ruby 7.4.4 → 7.4.5

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: 3052de4c2fd8bfb5bb0970f38e72a95b7e79c15c
4
- data.tar.gz: 568c38a60c149a631b1d61a70f237fdc0361743b
3
+ metadata.gz: 619d3a6713b7b6f33c44d24de3dce37e52e4c698
4
+ data.tar.gz: 993c12964af11fad24601bfeca3e281e5cb7ae1e
5
5
  SHA512:
6
- metadata.gz: 19a33d317d692b6bfefc92c964f581e03f819bc7ad0ec962db9fe328637ec939fb82d8d0b4c57d3e5d8980692bbff09b5e98d1620380104f9c67d07b2d72a649
7
- data.tar.gz: bf7d58379d89208d557cf735d8d8f15b8b2bc3f39b5d7141c843919b27ab0f0239450b2d73dc428229ed9059ce3c6c935f9851206a388912acad2971a68da845
6
+ metadata.gz: 0616330d6da95abbfb8b450beea2b3a81cc1b361c90b22225afd6dced81a1ccbc4ba83fac594517b8ce87e0e7fa52364014e15bcc876c17631279cd5565043b1
7
+ data.tar.gz: 165d87b36bed7e7bd27a01b2d033553a6719ebb3c27220ea9e0f1b6dd6abc20cd12c23aba8130a854cb417c959a8fa81b95f6e25b0df91dbbe0d006c78717666
data/CHANGES.md CHANGED
@@ -1,6 +1,18 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2025-02-20] Version 7.4.5
5
+ --------------------------
6
+ **Flex**
7
+ - Adding Digital Transfers APIs under v1/Interactions
8
+
9
+ **Numbers**
10
+ - Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}
11
+
12
+ **Trusthub**
13
+ - Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing
14
+
15
+
4
16
  [2025-02-11] Version 7.4.4
5
17
  --------------------------
6
18
  **Api**
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', '~> 7.4.4'
42
+ gem 'twilio-ruby', '~> 7.4.5'
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 7.4.4
48
+ gem install twilio-ruby -v 7.4.5
49
49
  ```
50
50
 
51
51
  To build and install the development branch yourself from the latest source:
@@ -48,7 +48,7 @@ module Twilio
48
48
  # @param [String] speech_model Recognition model used by the transcription engine, among those supported by the provider
49
49
  # @param [String] hints A Phrase contains words and phrase \\\"hints\\\" so that the speech recognition engine is more likely to recognize them.
50
50
  # @param [Boolean] enable_automatic_punctuation The provider will add punctuation to recognition result
51
- # @param [String] intelligence_service The SID of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
51
+ # @param [String] intelligence_service The SID or unique name of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
52
52
  # @return [TranscriptionInstance] Created TranscriptionInstance
53
53
  def create(
54
54
  name: :unset,
@@ -0,0 +1,352 @@
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 InteractionContext < InstanceContext
21
+ class InteractionChannelContext < InstanceContext
22
+
23
+ class InteractionTransferList < ListResource
24
+
25
+ ##
26
+ # Initialize the InteractionTransferList
27
+ # @param [Version] version Version that contains the resource
28
+ # @return [InteractionTransferList] InteractionTransferList
29
+ def initialize(version, interaction_sid: nil, channel_sid: nil)
30
+ super(version)
31
+ # Path Solution
32
+ @solution = { interaction_sid: interaction_sid, channel_sid: channel_sid }
33
+ @uri = "/Interactions/#{@solution[:interaction_sid]}/Channels/#{@solution[:channel_sid]}/Transfers"
34
+
35
+ end
36
+ ##
37
+ # Create the InteractionTransferInstance
38
+ # @param [Object] body
39
+ # @return [InteractionTransferInstance] Created InteractionTransferInstance
40
+ def create(body: :unset
41
+ )
42
+
43
+ headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
44
+ headers['Content-Type'] = 'application/json'
45
+
46
+
47
+
48
+
49
+ payload = @version.create('POST', @uri, headers: headers, data: body.to_json)
50
+ InteractionTransferInstance.new(
51
+ @version,
52
+ payload,
53
+ interaction_sid: @solution[:interaction_sid],
54
+ channel_sid: @solution[:channel_sid],
55
+ )
56
+ end
57
+
58
+
59
+
60
+
61
+ # Provide a user friendly representation
62
+ def to_s
63
+ '#<Twilio.FlexApi.V1.InteractionTransferList>'
64
+ end
65
+ end
66
+
67
+
68
+ class InteractionTransferContext < InstanceContext
69
+ ##
70
+ # Initialize the InteractionTransferContext
71
+ # @param [Version] version Version that contains the resource
72
+ # @param [String] interaction_sid The Interaction Sid for this channel.
73
+ # @param [String] channel_sid The Channel Sid for this Transfer.
74
+ # @param [String] sid The unique string created by Twilio to identify a Transfer resource.
75
+ # @return [InteractionTransferContext] InteractionTransferContext
76
+ def initialize(version, interaction_sid, channel_sid, sid)
77
+ super(version)
78
+
79
+ # Path Solution
80
+ @solution = { interaction_sid: interaction_sid, channel_sid: channel_sid, sid: sid, }
81
+ @uri = "/Interactions/#{@solution[:interaction_sid]}/Channels/#{@solution[:channel_sid]}/Transfers/#{@solution[:sid]}"
82
+
83
+
84
+ end
85
+ ##
86
+ # Fetch the InteractionTransferInstance
87
+ # @return [InteractionTransferInstance] Fetched InteractionTransferInstance
88
+ def fetch
89
+
90
+ headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
91
+
92
+
93
+
94
+
95
+
96
+ payload = @version.fetch('GET', @uri, headers: headers)
97
+ InteractionTransferInstance.new(
98
+ @version,
99
+ payload,
100
+ interaction_sid: @solution[:interaction_sid],
101
+ channel_sid: @solution[:channel_sid],
102
+ sid: @solution[:sid],
103
+ )
104
+ end
105
+
106
+ ##
107
+ # Update the InteractionTransferInstance
108
+ # @param [Object] body
109
+ # @return [InteractionTransferInstance] Updated InteractionTransferInstance
110
+ def update(body: :unset
111
+ )
112
+
113
+ headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
114
+ headers['Content-Type'] = 'application/json'
115
+
116
+
117
+
118
+
119
+ payload = @version.update('POST', @uri, headers: headers, data: body.to_json)
120
+ InteractionTransferInstance.new(
121
+ @version,
122
+ payload,
123
+ interaction_sid: @solution[:interaction_sid],
124
+ channel_sid: @solution[:channel_sid],
125
+ sid: @solution[:sid],
126
+ )
127
+ end
128
+
129
+
130
+ ##
131
+ # Provide a user friendly representation
132
+ def to_s
133
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
134
+ "#<Twilio.FlexApi.V1.InteractionTransferContext #{context}>"
135
+ end
136
+
137
+ ##
138
+ # Provide a detailed, user friendly representation
139
+ def inspect
140
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
141
+ "#<Twilio.FlexApi.V1.InteractionTransferContext #{context}>"
142
+ end
143
+ end
144
+
145
+ class InteractionTransferPage < Page
146
+ ##
147
+ # Initialize the InteractionTransferPage
148
+ # @param [Version] version Version that contains the resource
149
+ # @param [Response] response Response from the API
150
+ # @param [Hash] solution Path solution for the resource
151
+ # @return [InteractionTransferPage] InteractionTransferPage
152
+ def initialize(version, response, solution)
153
+ super(version, response)
154
+
155
+ # Path Solution
156
+ @solution = solution
157
+ end
158
+
159
+ ##
160
+ # Build an instance of InteractionTransferInstance
161
+ # @param [Hash] payload Payload response from the API
162
+ # @return [InteractionTransferInstance] InteractionTransferInstance
163
+ def get_instance(payload)
164
+ InteractionTransferInstance.new(@version, payload, interaction_sid: @solution[:interaction_sid], channel_sid: @solution[:channel_sid])
165
+ end
166
+
167
+ ##
168
+ # Provide a user friendly representation
169
+ def to_s
170
+ '<Twilio.FlexApi.V1.InteractionTransferPage>'
171
+ end
172
+ end
173
+ class InteractionTransferInstance < InstanceResource
174
+ ##
175
+ # Initialize the InteractionTransferInstance
176
+ # @param [Version] version Version that contains the resource
177
+ # @param [Hash] payload payload that contains response from Twilio
178
+ # @param [String] account_sid The SID of the
179
+ # {Account}[https://www.twilio.com/docs/iam/api/account] that created this InteractionTransfer
180
+ # resource.
181
+ # @param [String] sid The SID of the Call resource to fetch.
182
+ # @return [InteractionTransferInstance] InteractionTransferInstance
183
+ def initialize(version, payload , interaction_sid: nil, channel_sid: nil, sid: nil)
184
+ super(version)
185
+
186
+ # Marshaled Properties
187
+ @properties = {
188
+ 'sid' => payload['sid'],
189
+ 'instance_sid' => payload['instance_sid'],
190
+ 'account_sid' => payload['account_sid'],
191
+ 'interaction_sid' => payload['interaction_sid'],
192
+ 'channel_sid' => payload['channel_sid'],
193
+ 'execution_sid' => payload['execution_sid'],
194
+ 'type' => payload['type'],
195
+ 'status' => payload['status'],
196
+ 'from' => payload['from'],
197
+ 'to' => payload['to'],
198
+ 'note_sid' => payload['note_sid'],
199
+ 'summary_sid' => payload['summary_sid'],
200
+ 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
201
+ 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
202
+ 'url' => payload['url'],
203
+ }
204
+
205
+ # Context
206
+ @instance_context = nil
207
+ @params = { 'interaction_sid' => interaction_sid || @properties['interaction_sid'] ,'channel_sid' => channel_sid || @properties['channel_sid'] ,'sid' => sid || @properties['sid'] , }
208
+ end
209
+
210
+ ##
211
+ # Generate an instance context for the instance, the context is capable of
212
+ # performing various actions. All instance actions are proxied to the context
213
+ # @return [InteractionTransferContext] CallContext for this CallInstance
214
+ def context
215
+ unless @instance_context
216
+ @instance_context = InteractionTransferContext.new(@version , @params['interaction_sid'], @params['channel_sid'], @params['sid'])
217
+ end
218
+ @instance_context
219
+ end
220
+
221
+ ##
222
+ # @return [String] The unique string created by Twilio to identify an Interaction Transfer resource.
223
+ def sid
224
+ @properties['sid']
225
+ end
226
+
227
+ ##
228
+ # @return [String] The SID of the Instance associated with the Transfer.
229
+ def instance_sid
230
+ @properties['instance_sid']
231
+ end
232
+
233
+ ##
234
+ # @return [String] The SID of the Account that created the Transfer.
235
+ def account_sid
236
+ @properties['account_sid']
237
+ end
238
+
239
+ ##
240
+ # @return [String] The Interaction Sid for this channel.
241
+ def interaction_sid
242
+ @properties['interaction_sid']
243
+ end
244
+
245
+ ##
246
+ # @return [String] The Channel Sid for this Transfer.
247
+ def channel_sid
248
+ @properties['channel_sid']
249
+ end
250
+
251
+ ##
252
+ # @return [String] The Execution SID associated with the Transfer.
253
+ def execution_sid
254
+ @properties['execution_sid']
255
+ end
256
+
257
+ ##
258
+ # @return [TransferType]
259
+ def type
260
+ @properties['type']
261
+ end
262
+
263
+ ##
264
+ # @return [TransferStatus]
265
+ def status
266
+ @properties['status']
267
+ end
268
+
269
+ ##
270
+ # @return [String] The SID of the Participant initiating the Transfer.
271
+ def from
272
+ @properties['from']
273
+ end
274
+
275
+ ##
276
+ # @return [String] The SID of the Participant receiving the Transfer.
277
+ def to
278
+ @properties['to']
279
+ end
280
+
281
+ ##
282
+ # @return [String] The SID of the Note associated with the Transfer.
283
+ def note_sid
284
+ @properties['note_sid']
285
+ end
286
+
287
+ ##
288
+ # @return [String] The SID of the Summary associated with the Transfer.
289
+ def summary_sid
290
+ @properties['summary_sid']
291
+ end
292
+
293
+ ##
294
+ # @return [Time] The date and time when the Transfer was created.
295
+ def date_created
296
+ @properties['date_created']
297
+ end
298
+
299
+ ##
300
+ # @return [Time] The date and time when the Transfer was last updated.
301
+ def date_updated
302
+ @properties['date_updated']
303
+ end
304
+
305
+ ##
306
+ # @return [String]
307
+ def url
308
+ @properties['url']
309
+ end
310
+
311
+ ##
312
+ # Fetch the InteractionTransferInstance
313
+ # @return [InteractionTransferInstance] Fetched InteractionTransferInstance
314
+ def fetch
315
+
316
+ context.fetch
317
+ end
318
+
319
+ ##
320
+ # Update the InteractionTransferInstance
321
+ # @param [Object] body
322
+ # @return [InteractionTransferInstance] Updated InteractionTransferInstance
323
+ def update(body: :unset
324
+ )
325
+
326
+ context.update(
327
+ )
328
+ end
329
+
330
+ ##
331
+ # Provide a user friendly representation
332
+ def to_s
333
+ values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
334
+ "<Twilio.FlexApi.V1.InteractionTransferInstance #{values}>"
335
+ end
336
+
337
+ ##
338
+ # Provide a detailed, user friendly representation
339
+ def inspect
340
+ values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
341
+ "<Twilio.FlexApi.V1.InteractionTransferInstance #{values}>"
342
+ end
343
+ end
344
+
345
+ end
346
+ end
347
+ end
348
+ end
349
+ end
350
+ end
351
+
352
+
@@ -145,6 +145,7 @@ module Twilio
145
145
 
146
146
  # Dependents
147
147
  @invites = nil
148
+ @transfers = nil
148
149
  @participants = nil
149
150
  end
150
151
  ##
@@ -209,6 +210,25 @@ module Twilio
209
210
  @invites
210
211
  end
211
212
  ##
213
+ # Access the transfers
214
+ # @return [InteractionTransferList]
215
+ # @return [InteractionTransferContext] if sid was passed.
216
+ def transfers(sid=:unset)
217
+
218
+ raise ArgumentError, 'sid cannot be nil' if sid.nil?
219
+
220
+ if sid != :unset
221
+ return InteractionTransferContext.new(@version, @solution[:interaction_sid], @solution[:sid],sid )
222
+ end
223
+
224
+ unless @transfers
225
+ @transfers = InteractionTransferList.new(
226
+ @version, interaction_sid: @solution[:interaction_sid], channel_sid: @solution[:sid], )
227
+ end
228
+
229
+ @transfers
230
+ end
231
+ ##
212
232
  # Access the participants
213
233
  # @return [InteractionChannelParticipantList]
214
234
  # @return [InteractionChannelParticipantContext] if sid was passed.
@@ -391,6 +411,13 @@ module Twilio
391
411
  context.invites
392
412
  end
393
413
 
414
+ ##
415
+ # Access the transfers
416
+ # @return [transfers] transfers
417
+ def transfers
418
+ context.transfers
419
+ end
420
+
394
421
  ##
395
422
  # Access the participants
396
423
  # @return [participants] participants
@@ -17,12 +17,12 @@ module Twilio
17
17
  module REST
18
18
  class Iam < IamBase
19
19
  class V1 < Version
20
- class NewApiKeyList < ListResource
20
+ class KeyList < ListResource
21
21
 
22
22
  ##
23
- # Initialize the NewApiKeyList
23
+ # Initialize the KeyList
24
24
  # @param [Version] version Version that contains the resource
25
- # @return [NewApiKeyList] NewApiKeyList
25
+ # @return [KeyList] KeyList
26
26
  def initialize(version)
27
27
  super(version)
28
28
  # Path Solution
@@ -31,12 +31,12 @@ module Twilio
31
31
 
32
32
  end
33
33
  ##
34
- # Create the NewApiKeyInstance
34
+ # Create the KeyInstance
35
35
  # @param [String] account_sid The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Payments resource.
36
36
  # @param [String] friendly_name A descriptive string that you create to describe the resource. It can be up to 64 characters long.
37
37
  # @param [Keytype] key_type
38
38
  # @param [Object] policy The \\\\`Policy\\\\` object is a collection that specifies the allowed Twilio permissions for the restricted key. For more information on the permissions available with restricted API keys, refer to the [Twilio documentation](https://www.twilio.com/docs/iam/api-keys/restricted-api-keys#permissions-available-with-restricted-api-keys).
39
- # @return [NewApiKeyInstance] Created NewApiKeyInstance
39
+ # @return [KeyInstance] Created KeyInstance
40
40
  def create(
41
41
  account_sid: nil,
42
42
  friendly_name: :unset,
@@ -58,7 +58,7 @@ module Twilio
58
58
 
59
59
 
60
60
  payload = @version.create('POST', @uri, data: data, headers: headers)
61
- NewApiKeyInstance.new(
61
+ KeyInstance.new(
62
62
  @version,
63
63
  payload,
64
64
  )
@@ -69,17 +69,17 @@ module Twilio
69
69
 
70
70
  # Provide a user friendly representation
71
71
  def to_s
72
- '#<Twilio.Iam.V1.NewApiKeyList>'
72
+ '#<Twilio.Iam.V1.KeyList>'
73
73
  end
74
74
  end
75
75
 
76
- class NewApiKeyPage < Page
76
+ class KeyPage < Page
77
77
  ##
78
- # Initialize the NewApiKeyPage
78
+ # Initialize the KeyPage
79
79
  # @param [Version] version Version that contains the resource
80
80
  # @param [Response] response Response from the API
81
81
  # @param [Hash] solution Path solution for the resource
82
- # @return [NewApiKeyPage] NewApiKeyPage
82
+ # @return [KeyPage] KeyPage
83
83
  def initialize(version, response, solution)
84
84
  super(version, response)
85
85
 
@@ -88,29 +88,29 @@ module Twilio
88
88
  end
89
89
 
90
90
  ##
91
- # Build an instance of NewApiKeyInstance
91
+ # Build an instance of KeyInstance
92
92
  # @param [Hash] payload Payload response from the API
93
- # @return [NewApiKeyInstance] NewApiKeyInstance
93
+ # @return [KeyInstance] KeyInstance
94
94
  def get_instance(payload)
95
- NewApiKeyInstance.new(@version, payload)
95
+ KeyInstance.new(@version, payload)
96
96
  end
97
97
 
98
98
  ##
99
99
  # Provide a user friendly representation
100
100
  def to_s
101
- '<Twilio.Iam.V1.NewApiKeyPage>'
101
+ '<Twilio.Iam.V1.KeyPage>'
102
102
  end
103
103
  end
104
- class NewApiKeyInstance < InstanceResource
104
+ class KeyInstance < InstanceResource
105
105
  ##
106
- # Initialize the NewApiKeyInstance
106
+ # Initialize the KeyInstance
107
107
  # @param [Version] version Version that contains the resource
108
108
  # @param [Hash] payload payload that contains response from Twilio
109
109
  # @param [String] account_sid The SID of the
110
- # {Account}[https://www.twilio.com/docs/iam/api/account] that created this NewApiKey
110
+ # {Account}[https://www.twilio.com/docs/iam/api/account] that created this Key
111
111
  # resource.
112
112
  # @param [String] sid The SID of the Call resource to fetch.
113
- # @return [NewApiKeyInstance] NewApiKeyInstance
113
+ # @return [KeyInstance] KeyInstance
114
114
  def initialize(version, payload )
115
115
  super(version)
116
116
 
@@ -165,13 +165,13 @@ module Twilio
165
165
  ##
166
166
  # Provide a user friendly representation
167
167
  def to_s
168
- "<Twilio.Iam.V1.NewApiKeyInstance>"
168
+ "<Twilio.Iam.V1.KeyInstance>"
169
169
  end
170
170
 
171
171
  ##
172
172
  # Provide a detailed, user friendly representation
173
173
  def inspect
174
- "<Twilio.Iam.V1.NewApiKeyInstance>"
174
+ "<Twilio.Iam.V1.KeyInstance>"
175
175
  end
176
176
  end
177
177
 
@@ -23,7 +23,7 @@ module Twilio
23
23
  @version = 'v1'
24
24
  @api_key = nil
25
25
  @get_api_keys = nil
26
- @new_api_key = nil
26
+ @keys = nil
27
27
  end
28
28
 
29
29
  ##
@@ -46,9 +46,9 @@ module Twilio
46
46
  @get_api_keys ||= GetApiKeysList.new self
47
47
  end
48
48
  ##
49
- # @return [Twilio::REST::Iam::V1::NewApiKeyList]
50
- def new_api_key
51
- @new_api_key ||= NewApiKeyList.new self
49
+ # @return [Twilio::REST::Iam::V1::KeyList]
50
+ def keys
51
+ @keys ||= KeyList.new self
52
52
  end
53
53
  ##
54
54
  # Provide a user friendly representation
@@ -17,12 +17,12 @@ module Twilio
17
17
  module REST
18
18
  class Numbers < NumbersBase
19
19
  class V1 < Version
20
- class PortingWebhookConfigurationFetchList < ListResource
20
+ class WebhookList < ListResource
21
21
 
22
22
  ##
23
- # Initialize the PortingWebhookConfigurationFetchList
23
+ # Initialize the WebhookList
24
24
  # @param [Version] version Version that contains the resource
25
- # @return [PortingWebhookConfigurationFetchList] PortingWebhookConfigurationFetchList
25
+ # @return [WebhookList] WebhookList
26
26
  def initialize(version)
27
27
  super(version)
28
28
  # Path Solution
@@ -31,8 +31,8 @@ module Twilio
31
31
 
32
32
  end
33
33
  ##
34
- # Fetch the PortingWebhookConfigurationFetchInstance
35
- # @return [PortingWebhookConfigurationFetchInstance] Fetched PortingWebhookConfigurationFetchInstance
34
+ # Fetch the WebhookInstance
35
+ # @return [WebhookInstance] Fetched WebhookInstance
36
36
  def fetch
37
37
 
38
38
  headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
@@ -42,7 +42,7 @@ module Twilio
42
42
 
43
43
 
44
44
  payload = @version.fetch('GET', @uri, headers: headers)
45
- PortingWebhookConfigurationFetchInstance.new(
45
+ WebhookInstance.new(
46
46
  @version,
47
47
  payload,
48
48
  )
@@ -53,17 +53,17 @@ module Twilio
53
53
 
54
54
  # Provide a user friendly representation
55
55
  def to_s
56
- '#<Twilio.Numbers.V1.PortingWebhookConfigurationFetchList>'
56
+ '#<Twilio.Numbers.V1.WebhookList>'
57
57
  end
58
58
  end
59
59
 
60
- class PortingWebhookConfigurationFetchPage < Page
60
+ class WebhookPage < Page
61
61
  ##
62
- # Initialize the PortingWebhookConfigurationFetchPage
62
+ # Initialize the WebhookPage
63
63
  # @param [Version] version Version that contains the resource
64
64
  # @param [Response] response Response from the API
65
65
  # @param [Hash] solution Path solution for the resource
66
- # @return [PortingWebhookConfigurationFetchPage] PortingWebhookConfigurationFetchPage
66
+ # @return [WebhookPage] WebhookPage
67
67
  def initialize(version, response, solution)
68
68
  super(version, response)
69
69
 
@@ -72,29 +72,29 @@ module Twilio
72
72
  end
73
73
 
74
74
  ##
75
- # Build an instance of PortingWebhookConfigurationFetchInstance
75
+ # Build an instance of WebhookInstance
76
76
  # @param [Hash] payload Payload response from the API
77
- # @return [PortingWebhookConfigurationFetchInstance] PortingWebhookConfigurationFetchInstance
77
+ # @return [WebhookInstance] WebhookInstance
78
78
  def get_instance(payload)
79
- PortingWebhookConfigurationFetchInstance.new(@version, payload)
79
+ WebhookInstance.new(@version, payload)
80
80
  end
81
81
 
82
82
  ##
83
83
  # Provide a user friendly representation
84
84
  def to_s
85
- '<Twilio.Numbers.V1.PortingWebhookConfigurationFetchPage>'
85
+ '<Twilio.Numbers.V1.WebhookPage>'
86
86
  end
87
87
  end
88
- class PortingWebhookConfigurationFetchInstance < InstanceResource
88
+ class WebhookInstance < InstanceResource
89
89
  ##
90
- # Initialize the PortingWebhookConfigurationFetchInstance
90
+ # Initialize the WebhookInstance
91
91
  # @param [Version] version Version that contains the resource
92
92
  # @param [Hash] payload payload that contains response from Twilio
93
93
  # @param [String] account_sid The SID of the
94
- # {Account}[https://www.twilio.com/docs/iam/api/account] that created this PortingWebhookConfigurationFetch
94
+ # {Account}[https://www.twilio.com/docs/iam/api/account] that created this Webhook
95
95
  # resource.
96
96
  # @param [String] sid The SID of the Call resource to fetch.
97
- # @return [PortingWebhookConfigurationFetchInstance] PortingWebhookConfigurationFetchInstance
97
+ # @return [WebhookInstance] WebhookInstance
98
98
  def initialize(version, payload )
99
99
  super(version)
100
100
 
@@ -149,13 +149,13 @@ module Twilio
149
149
  ##
150
150
  # Provide a user friendly representation
151
151
  def to_s
152
- "<Twilio.Numbers.V1.PortingWebhookConfigurationFetchInstance>"
152
+ "<Twilio.Numbers.V1.WebhookInstance>"
153
153
  end
154
154
 
155
155
  ##
156
156
  # Provide a detailed, user friendly representation
157
157
  def inspect
158
- "<Twilio.Numbers.V1.PortingWebhookConfigurationFetchInstance>"
158
+ "<Twilio.Numbers.V1.WebhookInstance>"
159
159
  end
160
160
  end
161
161
 
@@ -28,8 +28,8 @@ module Twilio
28
28
  @porting_portabilities = nil
29
29
  @porting_webhook_configurations = nil
30
30
  @porting_webhook_configurations_delete = nil
31
- @porting_webhook_configuration_fetch = nil
32
31
  @signing_request_configurations = nil
32
+ @webhook = nil
33
33
  end
34
34
 
35
35
  ##
@@ -135,16 +135,16 @@ module Twilio
135
135
  end
136
136
  end
137
137
  ##
138
- # @return [Twilio::REST::Numbers::V1::PortingWebhookConfigurationFetchList]
139
- def porting_webhook_configuration_fetch
140
- @porting_webhook_configuration_fetch ||= PortingWebhookConfigurationFetchList.new self
141
- end
142
- ##
143
138
  # @return [Twilio::REST::Numbers::V1::SigningRequestConfigurationList]
144
139
  def signing_request_configurations
145
140
  @signing_request_configurations ||= SigningRequestConfigurationList.new self
146
141
  end
147
142
  ##
143
+ # @return [Twilio::REST::Numbers::V1::WebhookList]
144
+ def webhook
145
+ @webhook ||= WebhookList.new self
146
+ end
147
+ ##
148
148
  # Provide a user friendly representation
149
149
  def to_s
150
150
  '<Twilio::REST::Numbers::V1>';
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '7.4.4'
2
+ VERSION = '7.4.5'
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: 7.4.4
4
+ version: 7.4.5
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: 2025-02-11 00:00:00.000000000 Z
11
+ date: 2025-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -502,6 +502,7 @@ files:
502
502
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb
503
503
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb
504
504
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb
505
+ - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_transfer.rb
505
506
  - lib/twilio-ruby/rest/flex_api/v1/plugin.rb
506
507
  - lib/twilio-ruby/rest/flex_api/v1/plugin/plugin_versions.rb
507
508
  - lib/twilio-ruby/rest/flex_api/v1/plugin_archive.rb
@@ -524,7 +525,7 @@ files:
524
525
  - lib/twilio-ruby/rest/iam/v1.rb
525
526
  - lib/twilio-ruby/rest/iam/v1/api_key.rb
526
527
  - lib/twilio-ruby/rest/iam/v1/get_api_keys.rb
527
- - lib/twilio-ruby/rest/iam/v1/new_api_key.rb
528
+ - lib/twilio-ruby/rest/iam/v1/key.rb
528
529
  - lib/twilio-ruby/rest/iam_base.rb
529
530
  - lib/twilio-ruby/rest/insights.rb
530
531
  - lib/twilio-ruby/rest/insights/v1.rb
@@ -651,8 +652,8 @@ files:
651
652
  - lib/twilio-ruby/rest/numbers/v1/porting_portability.rb
652
653
  - lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb
653
654
  - lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb
654
- - lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_fetch.rb
655
655
  - lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb
656
+ - lib/twilio-ruby/rest/numbers/v1/webhook.rb
656
657
  - lib/twilio-ruby/rest/numbers/v2.rb
657
658
  - lib/twilio-ruby/rest/numbers/v2/authorization_document.rb
658
659
  - lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb