Skip to content

Commit 043bda5

Browse files
committed
[Librarian] Regenerated @ a25fe2e20ee404d8f8642d6e5acceff276916c9e
1 parent c1f5792 commit 043bda5

File tree

4 files changed

+256
-10
lines changed

4 files changed

+256
-10
lines changed

CHANGES.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
twilio-ruby changelog
22
=====================
33

4+
[2023-10-05] Version 6.7.1
5+
--------------------------
6+
**Library - Chore**
7+
- [PR #678](https://github.com/twilio/twilio-ruby/pull/678): twilio help changes. Thanks to [@kridai](https://github.com/kridai)!
8+
9+
**Lookups**
10+
- Add test api support for Lookup v2
11+
12+
413
[2023-09-21] Version 6.7.0
514
--------------------------
615
**Conversations**

lib/twilio-ruby/rest/api/v2010/account/message.rb

-10
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def initialize(version, account_sid: nil)
5050
# @param [Time] send_at The time that Twilio will send the message. Must be in ISO 8601 format.
5151
# @param [Boolean] send_as_mms If set to `true`, Twilio delivers the message as a single MMS message, regardless of the presence of media.
5252
# @param [String] content_variables For [Content Editor/API](https://www.twilio.com/docs/content) only: Key-value pairs of [Template variables](https://www.twilio.com/docs/content/using-variables-with-content-api) and their substitution values. `content_sid` parameter must also be provided. If values are not defined in the `content_variables` parameter, the [Template's default placeholder values](https://www.twilio.com/docs/content/content-api-resources#create-templates) are used.
53-
# @param [String] tags A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message. The object may contain up to 10 tags. Keys and values can each be up to 128 characters in length.
5453
# @param [RiskCheck] risk_check
5554
# @param [String] from The sender's Twilio phone number (in [E.164](https://en.wikipedia.org/wiki/E.164) format), [alphanumeric sender ID](https://www.twilio.com/docs/sms/send-messages#use-an-alphanumeric-sender-id), [Wireless SIM](https://www.twilio.com/docs/iot/wireless/programmable-wireless-send-machine-machine-sms-commands), [short code](https://www.twilio.com/docs/sms/api/short-code), or [channel address](https://www.twilio.com/docs/messaging/channels) (e.g., `whatsapp:+15554449999`). The value of the `from` parameter must be a sender that is hosted within Twilio and belongs to the Account creating the Message. If you are using `messaging_service_sid`, this parameter can be empty (Twilio assigns a `from` value from the Messaging Service's Sender Pool) or you can provide a specific sender from your Sender Pool.
5655
# @param [String] messaging_service_sid The SID of the [Messaging Service](https://www.twilio.com/docs/messaging/services) you want to associate with the Message. When this parameter is provided and the `from` parameter is omitted, Twilio selects the optimal sender from the Messaging Service's Sender Pool. You may also provide a `from` parameter if you want to use a specific Sender from the Sender Pool.
@@ -76,7 +75,6 @@ def create(
7675
send_at: :unset,
7776
send_as_mms: :unset,
7877
content_variables: :unset,
79-
tags: :unset,
8078
risk_check: :unset,
8179
from: :unset,
8280
messaging_service_sid: :unset,
@@ -103,7 +101,6 @@ def create(
103101
'SendAt' => Twilio.serialize_iso8601_datetime(send_at),
104102
'SendAsMms' => send_as_mms,
105103
'ContentVariables' => content_variables,
106-
'Tags' => tags,
107104
'RiskCheck' => risk_check,
108105
'From' => from,
109106
'MessagingServiceSid' => messaging_service_sid,
@@ -417,7 +414,6 @@ def initialize(version, payload , account_sid: nil, sid: nil)
417414
'price_unit' => payload['price_unit'],
418415
'api_version' => payload['api_version'],
419416
'subresource_uris' => payload['subresource_uris'],
420-
'tags' => payload['tags'],
421417
}
422418

423419
# Context
@@ -556,12 +552,6 @@ def subresource_uris
556552
@properties['subresource_uris']
557553
end
558554

559-
##
560-
# @return [Hash] A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message.
561-
def tags
562-
@properties['tags']
563-
end
564-
565555
##
566556
# Delete the MessageInstance
567557
# @return [Boolean] True if delete succeeds, false otherwise

lib/twilio-ruby/rest/trusthub/v1.rb

+15
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class V1 < Version
2121
def initialize(domain)
2222
super
2323
@version = 'v1'
24+
@compliance_inquiries = nil
2425
@customer_profiles = nil
2526
@end_users = nil
2627
@end_user_types = nil
@@ -30,6 +31,20 @@ def initialize(domain)
3031
@trust_products = nil
3132
end
3233

34+
##
35+
# @param [String] customer_id The unique CustomerId matching the Customer Profile/Compliance Inquiry that should be resumed or resubmitted. This value will have been returned by the initial Compliance Inquiry creation call.
36+
# @return [Twilio::REST::Trusthub::V1::ComplianceInquiriesContext] if customerId was passed.
37+
# @return [Twilio::REST::Trusthub::V1::ComplianceInquiriesList]
38+
def compliance_inquiries(customer_id=:unset)
39+
if customer_id.nil?
40+
raise ArgumentError, 'customer_id cannot be nil'
41+
end
42+
if customer_id == :unset
43+
@compliance_inquiries ||= ComplianceInquiriesList.new self
44+
else
45+
ComplianceInquiriesContext.new(self, customer_id)
46+
end
47+
end
3348
##
3449
# @param [String] sid The unique string that we created to identify the Customer-Profile resource.
3550
# @return [Twilio::REST::Trusthub::V1::CustomerProfilesContext] if sid was passed.
Original file line numberDiff line numberDiff line change
@@ -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 ComplianceInquiriesList < ListResource
21+
##
22+
# Initialize the ComplianceInquiriesList
23+
# @param [Version] version Version that contains the resource
24+
# @return [ComplianceInquiriesList] ComplianceInquiriesList
25+
def initialize(version)
26+
super(version)
27+
# Path Solution
28+
@solution = { }
29+
@uri = "/ComplianceInquiries/Customers/Initialize"
30+
31+
end
32+
##
33+
# Create the ComplianceInquiriesInstance
34+
# @param [String] primary_profile_sid The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile.
35+
# @return [ComplianceInquiriesInstance] Created ComplianceInquiriesInstance
36+
def create(
37+
primary_profile_sid: nil
38+
)
39+
40+
data = Twilio::Values.of({
41+
'PrimaryProfileSid' => primary_profile_sid,
42+
})
43+
44+
payload = @version.create('POST', @uri, data: data)
45+
ComplianceInquiriesInstance.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.ComplianceInquiriesList>'
57+
end
58+
end
59+
60+
61+
class ComplianceInquiriesContext < InstanceContext
62+
##
63+
# Initialize the ComplianceInquiriesContext
64+
# @param [Version] version Version that contains the resource
65+
# @param [String] customer_id The unique CustomerId matching the Customer Profile/Compliance Inquiry that should be resumed or resubmitted. This value will have been returned by the initial Compliance Inquiry creation call.
66+
# @return [ComplianceInquiriesContext] ComplianceInquiriesContext
67+
def initialize(version, customer_id)
68+
super(version)
69+
70+
# Path Solution
71+
@solution = { customer_id: customer_id, }
72+
@uri = "/ComplianceInquiries/Customers/#{@solution[:customer_id]}/Initialize"
73+
74+
75+
end
76+
##
77+
# Update the ComplianceInquiriesInstance
78+
# @param [String] primary_profile_sid The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile.
79+
# @return [ComplianceInquiriesInstance] Updated ComplianceInquiriesInstance
80+
def update(
81+
primary_profile_sid: nil
82+
)
83+
84+
data = Twilio::Values.of({
85+
'PrimaryProfileSid' => primary_profile_sid,
86+
})
87+
88+
payload = @version.update('POST', @uri, data: data)
89+
ComplianceInquiriesInstance.new(
90+
@version,
91+
payload,
92+
customer_id: @solution[:customer_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.ComplianceInquiriesContext #{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.ComplianceInquiriesContext #{context}>"
109+
end
110+
end
111+
112+
class ComplianceInquiriesPage < Page
113+
##
114+
# Initialize the ComplianceInquiriesPage
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 [ComplianceInquiriesPage] ComplianceInquiriesPage
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 ComplianceInquiriesInstance
128+
# @param [Hash] payload Payload response from the API
129+
# @return [ComplianceInquiriesInstance] ComplianceInquiriesInstance
130+
def get_instance(payload)
131+
ComplianceInquiriesInstance.new(@version, payload)
132+
end
133+
134+
##
135+
# Provide a user friendly representation
136+
def to_s
137+
'<Twilio.Trusthub.V1.ComplianceInquiriesPage>'
138+
end
139+
end
140+
class ComplianceInquiriesInstance < InstanceResource
141+
##
142+
# Initialize the ComplianceInquiriesInstance
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 ComplianceInquiries
147+
# resource.
148+
# @param [String] sid The SID of the Call resource to fetch.
149+
# @return [ComplianceInquiriesInstance] ComplianceInquiriesInstance
150+
def initialize(version, payload , customer_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+
'customer_id' => payload['customer_id'],
158+
'url' => payload['url'],
159+
}
160+
161+
# Context
162+
@instance_context = nil
163+
@params = { 'customer_id' => customer_id || @properties['customer_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 [ComplianceInquiriesContext] CallContext for this CallInstance
170+
def context
171+
unless @instance_context
172+
@instance_context = ComplianceInquiriesContext.new(@version , @params['customer_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 CustomerID matching the Customer Profile that should be resumed or resubmitted for editing.
191+
def customer_id
192+
@properties['customer_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 ComplianceInquiriesInstance
203+
# @param [String] primary_profile_sid The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile.
204+
# @return [ComplianceInquiriesInstance] Updated ComplianceInquiriesInstance
205+
def update(
206+
primary_profile_sid: nil
207+
)
208+
209+
context.update(
210+
primary_profile_sid: primary_profile_sid,
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.ComplianceInquiriesInstance #{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.ComplianceInquiriesInstance #{values}>"
226+
end
227+
end
228+
229+
end
230+
end
231+
end
232+
end

0 commit comments

Comments
 (0)