twilio-ruby 7.4.2 → 7.4.4
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/.github/ISSUE_TEMPLATE/bug_report.yml +69 -0
- data/CHANGES.md +33 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +2 -2
- data/lib/twilio-ruby/rest/content/v1/content.rb +23 -1
- data/lib/twilio-ruby/rest/events/v1/subscription.rb +19 -3
- data/lib/twilio-ruby/rest/iam/v1/{key.rb → new_api_key.rb} +20 -20
- data/lib/twilio-ruby/rest/iam/v1.rb +4 -4
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb +7 -0
- data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +8 -2
- data/lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb +386 -0
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +27 -0
- data/lib/twilio-ruby/rest/numbers/v1/{webhook.rb → porting_webhook_configuration_fetch.rb} +20 -20
- data/lib/twilio-ruby/rest/numbers/v1.rb +6 -6
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3052de4c2fd8bfb5bb0970f38e72a95b7e79c15c
|
4
|
+
data.tar.gz: 568c38a60c149a631b1d61a70f237fdc0361743b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19a33d317d692b6bfefc92c964f581e03f819bc7ad0ec962db9fe328637ec939fb82d8d0b4c57d3e5d8980692bbff09b5e98d1620380104f9c67d07b2d72a649
|
7
|
+
data.tar.gz: bf7d58379d89208d557cf735d8d8f15b8b2bc3f39b5d7141c843919b27ab0f0239450b2d73dc428229ed9059ce3c6c935f9851206a388912acad2971a68da845
|
@@ -0,0 +1,69 @@
|
|
1
|
+
name: Bug report
|
2
|
+
description: Report a bug with the twilio-ruby helper library.
|
3
|
+
title: "[BUG] Describe the issue briefly"
|
4
|
+
labels: "type: bug"
|
5
|
+
body:
|
6
|
+
- type: markdown
|
7
|
+
attributes:
|
8
|
+
value: |
|
9
|
+
Thank you for reporting a bug in the twilio-ruby helper library. Please provide the details below to help us investigate and resolve the issue.
|
10
|
+
|
11
|
+
- type: textarea
|
12
|
+
attributes:
|
13
|
+
label: Describe the bug
|
14
|
+
description: Provide a clear and concise description of the issue.
|
15
|
+
placeholder: A clear and concise description of the bug.
|
16
|
+
validations:
|
17
|
+
required: true
|
18
|
+
|
19
|
+
- type: textarea
|
20
|
+
attributes:
|
21
|
+
label: Code snippet
|
22
|
+
description: Provide the code snippet that reproduces the issue.
|
23
|
+
placeholder: "```\n// Code snippet here\n```"
|
24
|
+
validations:
|
25
|
+
required: true
|
26
|
+
|
27
|
+
- type: textarea
|
28
|
+
attributes:
|
29
|
+
label: Actual behavior
|
30
|
+
description: Describe what actually happened.
|
31
|
+
placeholder: A description of the actual behavior.
|
32
|
+
validations:
|
33
|
+
required: true
|
34
|
+
|
35
|
+
- type: textarea
|
36
|
+
attributes:
|
37
|
+
label: Expected behavior
|
38
|
+
description: Describe what you expected to happen.
|
39
|
+
placeholder: A description of the expected outcome.
|
40
|
+
validations:
|
41
|
+
required: true
|
42
|
+
|
43
|
+
- type: input
|
44
|
+
attributes:
|
45
|
+
label: twilio-ruby version
|
46
|
+
description: Specify the version of the twilio-ruby helper library you are using.
|
47
|
+
placeholder: e.g., 7.4.1
|
48
|
+
validations:
|
49
|
+
required: true
|
50
|
+
|
51
|
+
- type: input
|
52
|
+
attributes:
|
53
|
+
label: Ruby version
|
54
|
+
description: Specify the version of Ruby you are using.
|
55
|
+
placeholder: e.g., 2.7.2
|
56
|
+
validations:
|
57
|
+
required: true
|
58
|
+
|
59
|
+
- type: textarea
|
60
|
+
attributes:
|
61
|
+
label: Logs or error messages
|
62
|
+
description: Provide relevant logs or error messages (if any).
|
63
|
+
placeholder: "Error: Something went wrong..."
|
64
|
+
|
65
|
+
- type: textarea
|
66
|
+
attributes:
|
67
|
+
label: Additional context
|
68
|
+
description: Add any other context about the problem here.
|
69
|
+
placeholder: Any additional
|
data/CHANGES.md
CHANGED
@@ -1,6 +1,39 @@
|
|
1
1
|
twilio-ruby changelog
|
2
2
|
=====================
|
3
3
|
|
4
|
+
[2025-02-11] Version 7.4.4
|
5
|
+
--------------------------
|
6
|
+
**Api**
|
7
|
+
- Change downstream url and change media type for file `base/api/v2010/validation_request.json`.
|
8
|
+
|
9
|
+
**Intelligence**
|
10
|
+
- Add json_results for Generative JSON operator results
|
11
|
+
|
12
|
+
**Messaging**
|
13
|
+
- Add DestinationAlphaSender API to support Country-Specific Alpha Senders
|
14
|
+
|
15
|
+
**Video**
|
16
|
+
- Change codec type from enum to case-insensitive enum in recording and room_recording apis
|
17
|
+
|
18
|
+
|
19
|
+
[2025-01-28] Version 7.4.3
|
20
|
+
--------------------------
|
21
|
+
**Library - Chore**
|
22
|
+
- [PR #740](https://github.com/twilio/twilio-ruby/pull/740): added bug report issue template. Thanks to [@sbansla](https://github.com/sbansla)!
|
23
|
+
|
24
|
+
**Api**
|
25
|
+
- Add open-api file tag to `conference/call recordings` and `recording_transcriptions`.
|
26
|
+
|
27
|
+
**Events**
|
28
|
+
- Add support for subaccount subscriptions (beta)
|
29
|
+
|
30
|
+
**Insights**
|
31
|
+
- add new region to conference APIs
|
32
|
+
|
33
|
+
**Lookups**
|
34
|
+
- Add new `parnter_sub_id` query parameter to the lookup request
|
35
|
+
|
36
|
+
|
4
37
|
[2025-01-13] Version 7.4.2
|
5
38
|
--------------------------
|
6
39
|
**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', '~> 7.4.
|
42
|
+
gem 'twilio-ruby', '~> 7.4.4'
|
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.
|
48
|
+
gem install twilio-ruby -v 7.4.4
|
49
49
|
```
|
50
50
|
|
51
51
|
To build and install the development branch yourself from the latest source:
|
@@ -251,7 +251,7 @@ module Twilio
|
|
251
251
|
|
252
252
|
##
|
253
253
|
# Update the AddressInstance
|
254
|
-
# @param [String] friendly_name A descriptive string that you create to describe the address. It can be up to 64 characters long.
|
254
|
+
# @param [String] friendly_name A descriptive string that you create to describe the new address. It can be up to 64 characters long for Regulatory Compliance addresses and 32 characters long for Emergency addresses.
|
255
255
|
# @param [String] customer_name The name to associate with the address.
|
256
256
|
# @param [String] street The number and street address of the address.
|
257
257
|
# @param [String] city The city of the address.
|
@@ -518,7 +518,7 @@ module Twilio
|
|
518
518
|
|
519
519
|
##
|
520
520
|
# Update the AddressInstance
|
521
|
-
# @param [String] friendly_name A descriptive string that you create to describe the address. It can be up to 64 characters long.
|
521
|
+
# @param [String] friendly_name A descriptive string that you create to describe the new address. It can be up to 64 characters long for Regulatory Compliance addresses and 32 characters long for Emergency addresses.
|
522
522
|
# @param [String] customer_name The name to associate with the address.
|
523
523
|
# @param [String] street The number and street address of the address.
|
524
524
|
# @param [String] city The city of the address.
|
@@ -444,6 +444,25 @@ module Twilio
|
|
444
444
|
end
|
445
445
|
end
|
446
446
|
|
447
|
+
class TwilioSchedule
|
448
|
+
# @param [id]: [String]
|
449
|
+
# @param [title]: [String]
|
450
|
+
# @param [time_slots]: [String]
|
451
|
+
attr_accessor :id, :title, :time_slots
|
452
|
+
def initialize(payload)
|
453
|
+
@id = payload["id"]
|
454
|
+
@title = payload["title"]
|
455
|
+
@time_slots = payload["time_slots"]
|
456
|
+
end
|
457
|
+
def to_json(options = {})
|
458
|
+
{
|
459
|
+
"id": @id,
|
460
|
+
"title": @title,
|
461
|
+
"timeSlots": @time_slots,
|
462
|
+
}.to_json(options)
|
463
|
+
end
|
464
|
+
end
|
465
|
+
|
447
466
|
class TwilioText
|
448
467
|
# @param [body]: [String]
|
449
468
|
attr_accessor :body
|
@@ -468,9 +487,10 @@ module Twilio
|
|
468
487
|
# @param [twilio_catalog]: [ContentList.TwilioCatalog]
|
469
488
|
# @param [twilio_carousel]: [ContentList.TwilioCarousel]
|
470
489
|
# @param [twilio_flows]: [ContentList.TwilioFlows]
|
490
|
+
# @param [twilio_schedule]: [ContentList.TwilioSchedule]
|
471
491
|
# @param [whatsapp_card]: [ContentList.WhatsappCard]
|
472
492
|
# @param [whatsapp_authentication]: [ContentList.WhatsappAuthentication]
|
473
|
-
attr_accessor :twilio_text, :twilio_media, :twilio_location, :twilio_list_picker, :twilio_call_to_action, :twilio_quick_reply, :twilio_card, :twilio_catalog, :twilio_carousel, :twilio_flows, :whatsapp_card, :whatsapp_authentication
|
493
|
+
attr_accessor :twilio_text, :twilio_media, :twilio_location, :twilio_list_picker, :twilio_call_to_action, :twilio_quick_reply, :twilio_card, :twilio_catalog, :twilio_carousel, :twilio_flows, :twilio_schedule, :whatsapp_card, :whatsapp_authentication
|
474
494
|
def initialize(payload)
|
475
495
|
@twilio_text = payload["twilio_text"]
|
476
496
|
@twilio_media = payload["twilio_media"]
|
@@ -482,6 +502,7 @@ module Twilio
|
|
482
502
|
@twilio_catalog = payload["twilio_catalog"]
|
483
503
|
@twilio_carousel = payload["twilio_carousel"]
|
484
504
|
@twilio_flows = payload["twilio_flows"]
|
505
|
+
@twilio_schedule = payload["twilio_schedule"]
|
485
506
|
@whatsapp_card = payload["whatsapp_card"]
|
486
507
|
@whatsapp_authentication = payload["whatsapp_authentication"]
|
487
508
|
end
|
@@ -497,6 +518,7 @@ module Twilio
|
|
497
518
|
"twilio/catalog": @twilio_catalog,
|
498
519
|
"twilio/carousel": @twilio_carousel,
|
499
520
|
"twilio/flows": @twilio_flows,
|
521
|
+
"twilio/schedule": @twilio_schedule,
|
500
522
|
"whatsapp/card": @whatsapp_card,
|
501
523
|
"whatsapp/authentication": @whatsapp_authentication,
|
502
524
|
}.to_json(options)
|
@@ -35,17 +35,20 @@ module Twilio
|
|
35
35
|
# @param [String] description A human readable description for the Subscription **This value should not contain PII.**
|
36
36
|
# @param [String] sink_sid The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
|
37
37
|
# @param [Array[Hash]] types An array of objects containing the subscribed Event Types
|
38
|
+
# @param [Boolean] receive_events_from_subaccounts Receive events from all children accounts in the parent account subscription.
|
38
39
|
# @return [SubscriptionInstance] Created SubscriptionInstance
|
39
40
|
def create(
|
40
41
|
description: nil,
|
41
42
|
sink_sid: nil,
|
42
|
-
types: nil
|
43
|
+
types: nil,
|
44
|
+
receive_events_from_subaccounts: :unset
|
43
45
|
)
|
44
46
|
|
45
47
|
data = Twilio::Values.of({
|
46
48
|
'Description' => description,
|
47
49
|
'SinkSid' => sink_sid,
|
48
50
|
'Types' => Twilio.serialize_list(types) { |e| Twilio.serialize_object(e) },
|
51
|
+
'ReceiveEventsFromSubaccounts' => receive_events_from_subaccounts,
|
49
52
|
})
|
50
53
|
|
51
54
|
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
|
@@ -215,15 +218,18 @@ module Twilio
|
|
215
218
|
# Update the SubscriptionInstance
|
216
219
|
# @param [String] description A human readable description for the Subscription.
|
217
220
|
# @param [String] sink_sid The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
|
221
|
+
# @param [Boolean] receive_events_from_subaccounts Receive events from all children accounts in the parent account subscription.
|
218
222
|
# @return [SubscriptionInstance] Updated SubscriptionInstance
|
219
223
|
def update(
|
220
224
|
description: :unset,
|
221
|
-
sink_sid: :unset
|
225
|
+
sink_sid: :unset,
|
226
|
+
receive_events_from_subaccounts: :unset
|
222
227
|
)
|
223
228
|
|
224
229
|
data = Twilio::Values.of({
|
225
230
|
'Description' => description,
|
226
231
|
'SinkSid' => sink_sid,
|
232
|
+
'ReceiveEventsFromSubaccounts' => receive_events_from_subaccounts,
|
227
233
|
})
|
228
234
|
|
229
235
|
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
|
@@ -326,6 +332,7 @@ module Twilio
|
|
326
332
|
'sink_sid' => payload['sink_sid'],
|
327
333
|
'url' => payload['url'],
|
328
334
|
'links' => payload['links'],
|
335
|
+
'receive_events_from_subaccounts' => payload['receive_events_from_subaccounts'],
|
329
336
|
}
|
330
337
|
|
331
338
|
# Context
|
@@ -392,6 +399,12 @@ module Twilio
|
|
392
399
|
@properties['links']
|
393
400
|
end
|
394
401
|
|
402
|
+
##
|
403
|
+
# @return [Boolean] Receive events from all children accounts in the parent account subscription.
|
404
|
+
def receive_events_from_subaccounts
|
405
|
+
@properties['receive_events_from_subaccounts']
|
406
|
+
end
|
407
|
+
|
395
408
|
##
|
396
409
|
# Delete the SubscriptionInstance
|
397
410
|
# @return [Boolean] True if delete succeeds, false otherwise
|
@@ -412,15 +425,18 @@ module Twilio
|
|
412
425
|
# Update the SubscriptionInstance
|
413
426
|
# @param [String] description A human readable description for the Subscription.
|
414
427
|
# @param [String] sink_sid The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created.
|
428
|
+
# @param [Boolean] receive_events_from_subaccounts Receive events from all children accounts in the parent account subscription.
|
415
429
|
# @return [SubscriptionInstance] Updated SubscriptionInstance
|
416
430
|
def update(
|
417
431
|
description: :unset,
|
418
|
-
sink_sid: :unset
|
432
|
+
sink_sid: :unset,
|
433
|
+
receive_events_from_subaccounts: :unset
|
419
434
|
)
|
420
435
|
|
421
436
|
context.update(
|
422
437
|
description: description,
|
423
438
|
sink_sid: sink_sid,
|
439
|
+
receive_events_from_subaccounts: receive_events_from_subaccounts,
|
424
440
|
)
|
425
441
|
end
|
426
442
|
|
@@ -17,12 +17,12 @@ module Twilio
|
|
17
17
|
module REST
|
18
18
|
class Iam < IamBase
|
19
19
|
class V1 < Version
|
20
|
-
class
|
20
|
+
class NewApiKeyList < ListResource
|
21
21
|
|
22
22
|
##
|
23
|
-
# Initialize the
|
23
|
+
# Initialize the NewApiKeyList
|
24
24
|
# @param [Version] version Version that contains the resource
|
25
|
-
# @return [
|
25
|
+
# @return [NewApiKeyList] NewApiKeyList
|
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
|
34
|
+
# Create the NewApiKeyInstance
|
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 [
|
39
|
+
# @return [NewApiKeyInstance] Created NewApiKeyInstance
|
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
|
-
|
61
|
+
NewApiKeyInstance.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.
|
72
|
+
'#<Twilio.Iam.V1.NewApiKeyList>'
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
76
|
-
class
|
76
|
+
class NewApiKeyPage < Page
|
77
77
|
##
|
78
|
-
# Initialize the
|
78
|
+
# Initialize the NewApiKeyPage
|
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 [
|
82
|
+
# @return [NewApiKeyPage] NewApiKeyPage
|
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
|
91
|
+
# Build an instance of NewApiKeyInstance
|
92
92
|
# @param [Hash] payload Payload response from the API
|
93
|
-
# @return [
|
93
|
+
# @return [NewApiKeyInstance] NewApiKeyInstance
|
94
94
|
def get_instance(payload)
|
95
|
-
|
95
|
+
NewApiKeyInstance.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.
|
101
|
+
'<Twilio.Iam.V1.NewApiKeyPage>'
|
102
102
|
end
|
103
103
|
end
|
104
|
-
class
|
104
|
+
class NewApiKeyInstance < InstanceResource
|
105
105
|
##
|
106
|
-
# Initialize the
|
106
|
+
# Initialize the NewApiKeyInstance
|
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
|
110
|
+
# {Account}[https://www.twilio.com/docs/iam/api/account] that created this NewApiKey
|
111
111
|
# resource.
|
112
112
|
# @param [String] sid The SID of the Call resource to fetch.
|
113
|
-
# @return [
|
113
|
+
# @return [NewApiKeyInstance] NewApiKeyInstance
|
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.
|
168
|
+
"<Twilio.Iam.V1.NewApiKeyInstance>"
|
169
169
|
end
|
170
170
|
|
171
171
|
##
|
172
172
|
# Provide a detailed, user friendly representation
|
173
173
|
def inspect
|
174
|
-
"<Twilio.Iam.V1.
|
174
|
+
"<Twilio.Iam.V1.NewApiKeyInstance>"
|
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
|
-
@
|
26
|
+
@new_api_key = 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::
|
50
|
-
def
|
51
|
-
@
|
49
|
+
# @return [Twilio::REST::Iam::V1::NewApiKeyList]
|
50
|
+
def new_api_key
|
51
|
+
@new_api_key ||= NewApiKeyList.new self
|
52
52
|
end
|
53
53
|
##
|
54
54
|
# Provide a user friendly representation
|
@@ -249,6 +249,7 @@ module Twilio
|
|
249
249
|
'label_probabilities' => payload['label_probabilities'],
|
250
250
|
'extract_results' => payload['extract_results'],
|
251
251
|
'text_generation_results' => payload['text_generation_results'],
|
252
|
+
'json_results' => payload['json_results'],
|
252
253
|
'transcript_sid' => payload['transcript_sid'],
|
253
254
|
'url' => payload['url'],
|
254
255
|
}
|
@@ -347,6 +348,12 @@ module Twilio
|
|
347
348
|
@properties['text_generation_results']
|
348
349
|
end
|
349
350
|
|
351
|
+
##
|
352
|
+
# @return [Hash]
|
353
|
+
def json_results
|
354
|
+
@properties['json_results']
|
355
|
+
end
|
356
|
+
|
350
357
|
##
|
351
358
|
# @return [String] A 34 character string that uniquely identifies this Transcript.
|
352
359
|
def transcript_sid
|
@@ -71,6 +71,7 @@ module Twilio
|
|
71
71
|
# @param [String] date_of_birth User’s date of birth, in YYYYMMDD format. This query parameter is only used (optionally) for identity_match package requests.
|
72
72
|
# @param [String] last_verified_date The date you obtained consent to call or text the end-user of the phone number or a date on which you are reasonably certain that the end-user could still be reached at that number. This query parameter is only used (optionally) for reassigned_number package requests.
|
73
73
|
# @param [String] verification_sid The unique identifier associated with a verification process through verify API. This query parameter is only used (optionally) for pre_fill package requests.
|
74
|
+
# @param [String] partner_sub_id The optional partnerSubId parameter to provide context for your sub-accounts, tenantIDs, sender IDs or other segmentation, enhancing the accuracy of the risk analysis.
|
74
75
|
# @return [PhoneNumberInstance] Fetched PhoneNumberInstance
|
75
76
|
def fetch(
|
76
77
|
fields: :unset,
|
@@ -86,7 +87,8 @@ module Twilio
|
|
86
87
|
national_id: :unset,
|
87
88
|
date_of_birth: :unset,
|
88
89
|
last_verified_date: :unset,
|
89
|
-
verification_sid: :unset
|
90
|
+
verification_sid: :unset,
|
91
|
+
partner_sub_id: :unset
|
90
92
|
)
|
91
93
|
|
92
94
|
params = Twilio::Values.of({
|
@@ -104,6 +106,7 @@ module Twilio
|
|
104
106
|
'DateOfBirth' => date_of_birth,
|
105
107
|
'LastVerifiedDate' => last_verified_date,
|
106
108
|
'VerificationSid' => verification_sid,
|
109
|
+
'PartnerSubId' => partner_sub_id,
|
107
110
|
})
|
108
111
|
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
|
109
112
|
|
@@ -331,6 +334,7 @@ module Twilio
|
|
331
334
|
# @param [String] date_of_birth User’s date of birth, in YYYYMMDD format. This query parameter is only used (optionally) for identity_match package requests.
|
332
335
|
# @param [String] last_verified_date The date you obtained consent to call or text the end-user of the phone number or a date on which you are reasonably certain that the end-user could still be reached at that number. This query parameter is only used (optionally) for reassigned_number package requests.
|
333
336
|
# @param [String] verification_sid The unique identifier associated with a verification process through verify API. This query parameter is only used (optionally) for pre_fill package requests.
|
337
|
+
# @param [String] partner_sub_id The optional partnerSubId parameter to provide context for your sub-accounts, tenantIDs, sender IDs or other segmentation, enhancing the accuracy of the risk analysis.
|
334
338
|
# @return [PhoneNumberInstance] Fetched PhoneNumberInstance
|
335
339
|
def fetch(
|
336
340
|
fields: :unset,
|
@@ -346,7 +350,8 @@ module Twilio
|
|
346
350
|
national_id: :unset,
|
347
351
|
date_of_birth: :unset,
|
348
352
|
last_verified_date: :unset,
|
349
|
-
verification_sid: :unset
|
353
|
+
verification_sid: :unset,
|
354
|
+
partner_sub_id: :unset
|
350
355
|
)
|
351
356
|
|
352
357
|
context.fetch(
|
@@ -364,6 +369,7 @@ module Twilio
|
|
364
369
|
date_of_birth: date_of_birth,
|
365
370
|
last_verified_date: last_verified_date,
|
366
371
|
verification_sid: verification_sid,
|
372
|
+
partner_sub_id: partner_sub_id,
|
367
373
|
)
|
368
374
|
end
|
369
375
|
|
@@ -0,0 +1,386 @@
|
|
1
|
+
##
|
2
|
+
# This code was generated by
|
3
|
+
# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
|
4
|
+
# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
|
5
|
+
# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
|
6
|
+
#
|
7
|
+
# Twilio - Messaging
|
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 Messaging < MessagingBase
|
19
|
+
class V1 < Version
|
20
|
+
class ServiceContext < InstanceContext
|
21
|
+
|
22
|
+
class DestinationAlphaSenderList < ListResource
|
23
|
+
|
24
|
+
##
|
25
|
+
# Initialize the DestinationAlphaSenderList
|
26
|
+
# @param [Version] version Version that contains the resource
|
27
|
+
# @return [DestinationAlphaSenderList] DestinationAlphaSenderList
|
28
|
+
def initialize(version, service_sid: nil)
|
29
|
+
super(version)
|
30
|
+
# Path Solution
|
31
|
+
@solution = { service_sid: service_sid }
|
32
|
+
@uri = "/Services/#{@solution[:service_sid]}/DestinationAlphaSenders"
|
33
|
+
|
34
|
+
end
|
35
|
+
##
|
36
|
+
# Create the DestinationAlphaSenderInstance
|
37
|
+
# @param [String] alpha_sender The Alphanumeric Sender ID string. Can be up to 11 characters long. Valid characters are A-Z, a-z, 0-9, space, hyphen `-`, plus `+`, underscore `_` and ampersand `&`. This value cannot contain only numbers.
|
38
|
+
# @param [String] iso_country_code The Optional Two Character ISO Country Code the Alphanumeric Sender ID will be used for. If the IsoCountryCode is not provided, a default Alpha Sender will be created that can be used across all countries.
|
39
|
+
# @return [DestinationAlphaSenderInstance] Created DestinationAlphaSenderInstance
|
40
|
+
def create(
|
41
|
+
alpha_sender: nil,
|
42
|
+
iso_country_code: :unset
|
43
|
+
)
|
44
|
+
|
45
|
+
data = Twilio::Values.of({
|
46
|
+
'AlphaSender' => alpha_sender,
|
47
|
+
'IsoCountryCode' => iso_country_code,
|
48
|
+
})
|
49
|
+
|
50
|
+
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
payload = @version.create('POST', @uri, data: data, headers: headers)
|
57
|
+
DestinationAlphaSenderInstance.new(
|
58
|
+
@version,
|
59
|
+
payload,
|
60
|
+
service_sid: @solution[:service_sid],
|
61
|
+
)
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
##
|
66
|
+
# Lists DestinationAlphaSenderInstance records from the API as a list.
|
67
|
+
# Unlike stream(), this operation is eager and will load `limit` records into
|
68
|
+
# memory before returning.
|
69
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
70
|
+
# guarantees to never return more than limit. Default is no limit
|
71
|
+
# @param [Integer] page_size Number of records to fetch per request, when
|
72
|
+
# not set will use the default value of 50 records. If no page_size is defined
|
73
|
+
# but a limit is defined, stream() will attempt to read the limit with the most
|
74
|
+
# efficient page size, i.e. min(limit, 1000)
|
75
|
+
# @return [Array] Array of up to limit results
|
76
|
+
def list(limit: nil, page_size: nil)
|
77
|
+
self.stream(
|
78
|
+
limit: limit,
|
79
|
+
page_size: page_size
|
80
|
+
).entries
|
81
|
+
end
|
82
|
+
|
83
|
+
##
|
84
|
+
# Streams Instance records from the API as an Enumerable.
|
85
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
86
|
+
# is reached.
|
87
|
+
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
88
|
+
# guarantees to never return more than limit. Default is no limit
|
89
|
+
# @param [Integer] page_size Number of records to fetch per request, when
|
90
|
+
# not set will use the default value of 50 records. If no page_size is defined
|
91
|
+
# but a limit is defined, stream() will attempt to read the limit with the most
|
92
|
+
# efficient page size, i.e. min(limit, 1000)
|
93
|
+
# @return [Enumerable] Enumerable that will yield up to limit results
|
94
|
+
def stream(limit: nil, page_size: nil)
|
95
|
+
limits = @version.read_limits(limit, page_size)
|
96
|
+
|
97
|
+
page = self.page(
|
98
|
+
page_size: limits[:page_size], )
|
99
|
+
|
100
|
+
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
101
|
+
end
|
102
|
+
|
103
|
+
##
|
104
|
+
# When passed a block, yields DestinationAlphaSenderInstance records from the API.
|
105
|
+
# This operation lazily loads records as efficiently as possible until the limit
|
106
|
+
# is reached.
|
107
|
+
def each
|
108
|
+
limits = @version.read_limits
|
109
|
+
|
110
|
+
page = self.page(page_size: limits[:page_size], )
|
111
|
+
|
112
|
+
@version.stream(page,
|
113
|
+
limit: limits[:limit],
|
114
|
+
page_limit: limits[:page_limit]).each {|x| yield x}
|
115
|
+
end
|
116
|
+
|
117
|
+
##
|
118
|
+
# Retrieve a single page of DestinationAlphaSenderInstance records from the API.
|
119
|
+
# Request is executed immediately.
|
120
|
+
# @param [String] page_token PageToken provided by the API
|
121
|
+
# @param [Integer] page_number Page Number, this value is simply for client state
|
122
|
+
# @param [Integer] page_size Number of records to return, defaults to 50
|
123
|
+
# @return [Page] Page of DestinationAlphaSenderInstance
|
124
|
+
def page(page_token: :unset, page_number: :unset, page_size: :unset)
|
125
|
+
params = Twilio::Values.of({
|
126
|
+
'PageToken' => page_token,
|
127
|
+
'Page' => page_number,
|
128
|
+
'PageSize' => page_size,
|
129
|
+
})
|
130
|
+
headers = Twilio::Values.of({})
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
response = @version.page('GET', @uri, params: params, headers: headers)
|
135
|
+
|
136
|
+
DestinationAlphaSenderPage.new(@version, response, @solution)
|
137
|
+
end
|
138
|
+
|
139
|
+
##
|
140
|
+
# Retrieve a single page of DestinationAlphaSenderInstance records from the API.
|
141
|
+
# Request is executed immediately.
|
142
|
+
# @param [String] target_url API-generated URL for the requested results page
|
143
|
+
# @return [Page] Page of DestinationAlphaSenderInstance
|
144
|
+
def get_page(target_url)
|
145
|
+
response = @version.domain.request(
|
146
|
+
'GET',
|
147
|
+
target_url
|
148
|
+
)
|
149
|
+
DestinationAlphaSenderPage.new(@version, response, @solution)
|
150
|
+
end
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
# Provide a user friendly representation
|
155
|
+
def to_s
|
156
|
+
'#<Twilio.Messaging.V1.DestinationAlphaSenderList>'
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
|
161
|
+
class DestinationAlphaSenderContext < InstanceContext
|
162
|
+
##
|
163
|
+
# Initialize the DestinationAlphaSenderContext
|
164
|
+
# @param [Version] version Version that contains the resource
|
165
|
+
# @param [String] service_sid The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) to fetch the resource from.
|
166
|
+
# @param [String] sid The SID of the AlphaSender resource to fetch.
|
167
|
+
# @return [DestinationAlphaSenderContext] DestinationAlphaSenderContext
|
168
|
+
def initialize(version, service_sid, sid)
|
169
|
+
super(version)
|
170
|
+
|
171
|
+
# Path Solution
|
172
|
+
@solution = { service_sid: service_sid, sid: sid, }
|
173
|
+
@uri = "/Services/#{@solution[:service_sid]}/DestinationAlphaSenders/#{@solution[:sid]}"
|
174
|
+
|
175
|
+
|
176
|
+
end
|
177
|
+
##
|
178
|
+
# Delete the DestinationAlphaSenderInstance
|
179
|
+
# @return [Boolean] True if delete succeeds, false otherwise
|
180
|
+
def delete
|
181
|
+
|
182
|
+
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
@version.delete('DELETE', @uri, headers: headers)
|
187
|
+
end
|
188
|
+
|
189
|
+
##
|
190
|
+
# Fetch the DestinationAlphaSenderInstance
|
191
|
+
# @return [DestinationAlphaSenderInstance] Fetched DestinationAlphaSenderInstance
|
192
|
+
def fetch
|
193
|
+
|
194
|
+
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
|
195
|
+
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
payload = @version.fetch('GET', @uri, headers: headers)
|
201
|
+
DestinationAlphaSenderInstance.new(
|
202
|
+
@version,
|
203
|
+
payload,
|
204
|
+
service_sid: @solution[:service_sid],
|
205
|
+
sid: @solution[:sid],
|
206
|
+
)
|
207
|
+
end
|
208
|
+
|
209
|
+
|
210
|
+
##
|
211
|
+
# Provide a user friendly representation
|
212
|
+
def to_s
|
213
|
+
context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
|
214
|
+
"#<Twilio.Messaging.V1.DestinationAlphaSenderContext #{context}>"
|
215
|
+
end
|
216
|
+
|
217
|
+
##
|
218
|
+
# Provide a detailed, user friendly representation
|
219
|
+
def inspect
|
220
|
+
context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
|
221
|
+
"#<Twilio.Messaging.V1.DestinationAlphaSenderContext #{context}>"
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
class DestinationAlphaSenderPage < Page
|
226
|
+
##
|
227
|
+
# Initialize the DestinationAlphaSenderPage
|
228
|
+
# @param [Version] version Version that contains the resource
|
229
|
+
# @param [Response] response Response from the API
|
230
|
+
# @param [Hash] solution Path solution for the resource
|
231
|
+
# @return [DestinationAlphaSenderPage] DestinationAlphaSenderPage
|
232
|
+
def initialize(version, response, solution)
|
233
|
+
super(version, response)
|
234
|
+
|
235
|
+
# Path Solution
|
236
|
+
@solution = solution
|
237
|
+
end
|
238
|
+
|
239
|
+
##
|
240
|
+
# Build an instance of DestinationAlphaSenderInstance
|
241
|
+
# @param [Hash] payload Payload response from the API
|
242
|
+
# @return [DestinationAlphaSenderInstance] DestinationAlphaSenderInstance
|
243
|
+
def get_instance(payload)
|
244
|
+
DestinationAlphaSenderInstance.new(@version, payload, service_sid: @solution[:service_sid])
|
245
|
+
end
|
246
|
+
|
247
|
+
##
|
248
|
+
# Provide a user friendly representation
|
249
|
+
def to_s
|
250
|
+
'<Twilio.Messaging.V1.DestinationAlphaSenderPage>'
|
251
|
+
end
|
252
|
+
end
|
253
|
+
class DestinationAlphaSenderInstance < InstanceResource
|
254
|
+
##
|
255
|
+
# Initialize the DestinationAlphaSenderInstance
|
256
|
+
# @param [Version] version Version that contains the resource
|
257
|
+
# @param [Hash] payload payload that contains response from Twilio
|
258
|
+
# @param [String] account_sid The SID of the
|
259
|
+
# {Account}[https://www.twilio.com/docs/iam/api/account] that created this DestinationAlphaSender
|
260
|
+
# resource.
|
261
|
+
# @param [String] sid The SID of the Call resource to fetch.
|
262
|
+
# @return [DestinationAlphaSenderInstance] DestinationAlphaSenderInstance
|
263
|
+
def initialize(version, payload , service_sid: nil, sid: nil)
|
264
|
+
super(version)
|
265
|
+
|
266
|
+
# Marshaled Properties
|
267
|
+
@properties = {
|
268
|
+
'sid' => payload['sid'],
|
269
|
+
'account_sid' => payload['account_sid'],
|
270
|
+
'service_sid' => payload['service_sid'],
|
271
|
+
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
272
|
+
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
273
|
+
'alpha_sender' => payload['alpha_sender'],
|
274
|
+
'capabilities' => payload['capabilities'],
|
275
|
+
'url' => payload['url'],
|
276
|
+
'iso_country_code' => payload['iso_country_code'],
|
277
|
+
}
|
278
|
+
|
279
|
+
# Context
|
280
|
+
@instance_context = nil
|
281
|
+
@params = { 'service_sid' => service_sid || @properties['service_sid'] ,'sid' => sid || @properties['sid'] , }
|
282
|
+
end
|
283
|
+
|
284
|
+
##
|
285
|
+
# Generate an instance context for the instance, the context is capable of
|
286
|
+
# performing various actions. All instance actions are proxied to the context
|
287
|
+
# @return [DestinationAlphaSenderContext] CallContext for this CallInstance
|
288
|
+
def context
|
289
|
+
unless @instance_context
|
290
|
+
@instance_context = DestinationAlphaSenderContext.new(@version , @params['service_sid'], @params['sid'])
|
291
|
+
end
|
292
|
+
@instance_context
|
293
|
+
end
|
294
|
+
|
295
|
+
##
|
296
|
+
# @return [String] The unique string that we created to identify the AlphaSender resource.
|
297
|
+
def sid
|
298
|
+
@properties['sid']
|
299
|
+
end
|
300
|
+
|
301
|
+
##
|
302
|
+
# @return [String] The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the AlphaSender resource.
|
303
|
+
def account_sid
|
304
|
+
@properties['account_sid']
|
305
|
+
end
|
306
|
+
|
307
|
+
##
|
308
|
+
# @return [String] The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) the resource is associated with.
|
309
|
+
def service_sid
|
310
|
+
@properties['service_sid']
|
311
|
+
end
|
312
|
+
|
313
|
+
##
|
314
|
+
# @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
315
|
+
def date_created
|
316
|
+
@properties['date_created']
|
317
|
+
end
|
318
|
+
|
319
|
+
##
|
320
|
+
# @return [Time] The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
321
|
+
def date_updated
|
322
|
+
@properties['date_updated']
|
323
|
+
end
|
324
|
+
|
325
|
+
##
|
326
|
+
# @return [String] The Alphanumeric Sender ID string.
|
327
|
+
def alpha_sender
|
328
|
+
@properties['alpha_sender']
|
329
|
+
end
|
330
|
+
|
331
|
+
##
|
332
|
+
# @return [Array<String>] An array of values that describe whether the number can receive calls or messages. Can be: `SMS`.
|
333
|
+
def capabilities
|
334
|
+
@properties['capabilities']
|
335
|
+
end
|
336
|
+
|
337
|
+
##
|
338
|
+
# @return [String] The absolute URL of the AlphaSender resource.
|
339
|
+
def url
|
340
|
+
@properties['url']
|
341
|
+
end
|
342
|
+
|
343
|
+
##
|
344
|
+
# @return [String] The Two Character ISO Country Code the Alphanumeric Sender ID will be used for. For Default Alpha Senders that work across countries, this value will be an empty string
|
345
|
+
def iso_country_code
|
346
|
+
@properties['iso_country_code']
|
347
|
+
end
|
348
|
+
|
349
|
+
##
|
350
|
+
# Delete the DestinationAlphaSenderInstance
|
351
|
+
# @return [Boolean] True if delete succeeds, false otherwise
|
352
|
+
def delete
|
353
|
+
|
354
|
+
context.delete
|
355
|
+
end
|
356
|
+
|
357
|
+
##
|
358
|
+
# Fetch the DestinationAlphaSenderInstance
|
359
|
+
# @return [DestinationAlphaSenderInstance] Fetched DestinationAlphaSenderInstance
|
360
|
+
def fetch
|
361
|
+
|
362
|
+
context.fetch
|
363
|
+
end
|
364
|
+
|
365
|
+
##
|
366
|
+
# Provide a user friendly representation
|
367
|
+
def to_s
|
368
|
+
values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
369
|
+
"<Twilio.Messaging.V1.DestinationAlphaSenderInstance #{values}>"
|
370
|
+
end
|
371
|
+
|
372
|
+
##
|
373
|
+
# Provide a detailed, user friendly representation
|
374
|
+
def inspect
|
375
|
+
values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
|
376
|
+
"<Twilio.Messaging.V1.DestinationAlphaSenderInstance #{values}>"
|
377
|
+
end
|
378
|
+
end
|
379
|
+
|
380
|
+
end
|
381
|
+
end
|
382
|
+
end
|
383
|
+
end
|
384
|
+
end
|
385
|
+
|
386
|
+
|
@@ -216,6 +216,7 @@ module Twilio
|
|
216
216
|
@us_app_to_person = nil
|
217
217
|
@phone_numbers = nil
|
218
218
|
@alpha_senders = nil
|
219
|
+
@destination_alpha_senders = nil
|
219
220
|
@channel_senders = nil
|
220
221
|
end
|
221
222
|
##
|
@@ -408,6 +409,25 @@ module Twilio
|
|
408
409
|
@alpha_senders
|
409
410
|
end
|
410
411
|
##
|
412
|
+
# Access the destination_alpha_senders
|
413
|
+
# @return [DestinationAlphaSenderList]
|
414
|
+
# @return [DestinationAlphaSenderContext] if sid was passed.
|
415
|
+
def destination_alpha_senders(sid=:unset)
|
416
|
+
|
417
|
+
raise ArgumentError, 'sid cannot be nil' if sid.nil?
|
418
|
+
|
419
|
+
if sid != :unset
|
420
|
+
return DestinationAlphaSenderContext.new(@version, @solution[:sid],sid )
|
421
|
+
end
|
422
|
+
|
423
|
+
unless @destination_alpha_senders
|
424
|
+
@destination_alpha_senders = DestinationAlphaSenderList.new(
|
425
|
+
@version, service_sid: @solution[:sid], )
|
426
|
+
end
|
427
|
+
|
428
|
+
@destination_alpha_senders
|
429
|
+
end
|
430
|
+
##
|
411
431
|
# Access the channel_senders
|
412
432
|
# @return [ChannelSenderList]
|
413
433
|
# @return [ChannelSenderContext] if sid was passed.
|
@@ -773,6 +793,13 @@ module Twilio
|
|
773
793
|
context.alpha_senders
|
774
794
|
end
|
775
795
|
|
796
|
+
##
|
797
|
+
# Access the destination_alpha_senders
|
798
|
+
# @return [destination_alpha_senders] destination_alpha_senders
|
799
|
+
def destination_alpha_senders
|
800
|
+
context.destination_alpha_senders
|
801
|
+
end
|
802
|
+
|
776
803
|
##
|
777
804
|
# Access the channel_senders
|
778
805
|
# @return [channel_senders] channel_senders
|
@@ -17,12 +17,12 @@ module Twilio
|
|
17
17
|
module REST
|
18
18
|
class Numbers < NumbersBase
|
19
19
|
class V1 < Version
|
20
|
-
class
|
20
|
+
class PortingWebhookConfigurationFetchList < ListResource
|
21
21
|
|
22
22
|
##
|
23
|
-
# Initialize the
|
23
|
+
# Initialize the PortingWebhookConfigurationFetchList
|
24
24
|
# @param [Version] version Version that contains the resource
|
25
|
-
# @return [
|
25
|
+
# @return [PortingWebhookConfigurationFetchList] PortingWebhookConfigurationFetchList
|
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
|
35
|
-
# @return [
|
34
|
+
# Fetch the PortingWebhookConfigurationFetchInstance
|
35
|
+
# @return [PortingWebhookConfigurationFetchInstance] Fetched PortingWebhookConfigurationFetchInstance
|
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
|
-
|
45
|
+
PortingWebhookConfigurationFetchInstance.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.
|
56
|
+
'#<Twilio.Numbers.V1.PortingWebhookConfigurationFetchList>'
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
class
|
60
|
+
class PortingWebhookConfigurationFetchPage < Page
|
61
61
|
##
|
62
|
-
# Initialize the
|
62
|
+
# Initialize the PortingWebhookConfigurationFetchPage
|
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 [
|
66
|
+
# @return [PortingWebhookConfigurationFetchPage] PortingWebhookConfigurationFetchPage
|
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
|
75
|
+
# Build an instance of PortingWebhookConfigurationFetchInstance
|
76
76
|
# @param [Hash] payload Payload response from the API
|
77
|
-
# @return [
|
77
|
+
# @return [PortingWebhookConfigurationFetchInstance] PortingWebhookConfigurationFetchInstance
|
78
78
|
def get_instance(payload)
|
79
|
-
|
79
|
+
PortingWebhookConfigurationFetchInstance.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.
|
85
|
+
'<Twilio.Numbers.V1.PortingWebhookConfigurationFetchPage>'
|
86
86
|
end
|
87
87
|
end
|
88
|
-
class
|
88
|
+
class PortingWebhookConfigurationFetchInstance < InstanceResource
|
89
89
|
##
|
90
|
-
# Initialize the
|
90
|
+
# Initialize the PortingWebhookConfigurationFetchInstance
|
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
|
94
|
+
# {Account}[https://www.twilio.com/docs/iam/api/account] that created this PortingWebhookConfigurationFetch
|
95
95
|
# resource.
|
96
96
|
# @param [String] sid The SID of the Call resource to fetch.
|
97
|
-
# @return [
|
97
|
+
# @return [PortingWebhookConfigurationFetchInstance] PortingWebhookConfigurationFetchInstance
|
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.
|
152
|
+
"<Twilio.Numbers.V1.PortingWebhookConfigurationFetchInstance>"
|
153
153
|
end
|
154
154
|
|
155
155
|
##
|
156
156
|
# Provide a detailed, user friendly representation
|
157
157
|
def inspect
|
158
|
-
"<Twilio.Numbers.V1.
|
158
|
+
"<Twilio.Numbers.V1.PortingWebhookConfigurationFetchInstance>"
|
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
|
31
32
|
@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
|
+
##
|
138
143
|
# @return [Twilio::REST::Numbers::V1::SigningRequestConfigurationList]
|
139
144
|
def signing_request_configurations
|
140
145
|
@signing_request_configurations ||= SigningRequestConfigurationList.new self
|
141
146
|
end
|
142
147
|
##
|
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>';
|
data/lib/twilio-ruby/version.rb
CHANGED
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
|
+
version: 7.4.4
|
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-
|
11
|
+
date: 2025-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -226,6 +226,7 @@ extra_rdoc_files:
|
|
226
226
|
- LICENSE
|
227
227
|
files:
|
228
228
|
- ".dockerignore"
|
229
|
+
- ".github/ISSUE_TEMPLATE/bug_report.yml"
|
229
230
|
- ".github/workflows/pr-lint.yml"
|
230
231
|
- ".github/workflows/test-and-deploy.yml"
|
231
232
|
- ".gitignore"
|
@@ -523,7 +524,7 @@ files:
|
|
523
524
|
- lib/twilio-ruby/rest/iam/v1.rb
|
524
525
|
- lib/twilio-ruby/rest/iam/v1/api_key.rb
|
525
526
|
- lib/twilio-ruby/rest/iam/v1/get_api_keys.rb
|
526
|
-
- lib/twilio-ruby/rest/iam/v1/
|
527
|
+
- lib/twilio-ruby/rest/iam/v1/new_api_key.rb
|
527
528
|
- lib/twilio-ruby/rest/iam_base.rb
|
528
529
|
- lib/twilio-ruby/rest/insights.rb
|
529
530
|
- lib/twilio-ruby/rest/insights/v1.rb
|
@@ -611,6 +612,7 @@ files:
|
|
611
612
|
- lib/twilio-ruby/rest/messaging/v1/service.rb
|
612
613
|
- lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb
|
613
614
|
- lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb
|
615
|
+
- lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb
|
614
616
|
- lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb
|
615
617
|
- lib/twilio-ruby/rest/messaging/v1/service/short_code.rb
|
616
618
|
- lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb
|
@@ -649,8 +651,8 @@ files:
|
|
649
651
|
- lib/twilio-ruby/rest/numbers/v1/porting_portability.rb
|
650
652
|
- lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb
|
651
653
|
- lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb
|
654
|
+
- lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_fetch.rb
|
652
655
|
- lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb
|
653
|
-
- lib/twilio-ruby/rest/numbers/v1/webhook.rb
|
654
656
|
- lib/twilio-ruby/rest/numbers/v2.rb
|
655
657
|
- lib/twilio-ruby/rest/numbers/v2/authorization_document.rb
|
656
658
|
- lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb
|