forked from twilio/twilio-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Librarian] Regenerated @ 01f08ee7ea770beb526f655c6e616695f7eab4e0
- Loading branch information
Showing
19 changed files
with
752 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
160 changes: 160 additions & 0 deletions
160
lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
## | ||
# This code was generated by | ||
# \ / _ _ _| _ _ | ||
# | (_)\/(_)(_|\/| |(/_ v1.0.0 | ||
# / / | ||
# | ||
# frozen_string_literal: true | ||
|
||
module Twilio | ||
module REST | ||
class Api < Domain | ||
class V2010 < Version | ||
class AccountContext < InstanceContext | ||
class CallContext < InstanceContext | ||
class UserDefinedMessageList < ListResource | ||
## | ||
# Initialize the UserDefinedMessageList | ||
# @param [Version] version Version that contains the resource | ||
# @param [String] account_sid The SID of the | ||
# {Account}[https://www.twilio.com/docs/iam/api/account] that created User Defined | ||
# Message. | ||
# @param [String] call_sid The SID of the | ||
# {Call}[https://www.twilio.com/docs/voice/api/call-resource] the User Defined | ||
# Message is associated with. | ||
# @return [UserDefinedMessageList] UserDefinedMessageList | ||
def initialize(version, account_sid: nil, call_sid: nil) | ||
super(version) | ||
|
||
# Path Solution | ||
@solution = {account_sid: account_sid, call_sid: call_sid} | ||
@uri = "/Accounts/#{@solution[:account_sid]}/Calls/#{@solution[:call_sid]}/UserDefinedMessages.json" | ||
end | ||
|
||
## | ||
# Create the UserDefinedMessageInstance | ||
# @param [String] content A unique string value to identify API call. This should | ||
# be a unique string value per API call and can be a randomly generated. | ||
# @param [String] idempotency_key A unique string value to identify API call. This | ||
# should be a unique string value per API call and can be a randomly generated. | ||
# @return [UserDefinedMessageInstance] Created UserDefinedMessageInstance | ||
def create(content: nil, idempotency_key: :unset) | ||
data = Twilio::Values.of({'Content' => content, 'IdempotencyKey' => idempotency_key, }) | ||
|
||
payload = @version.create('POST', @uri, data: data) | ||
|
||
UserDefinedMessageInstance.new( | ||
@version, | ||
payload, | ||
account_sid: @solution[:account_sid], | ||
call_sid: @solution[:call_sid], | ||
) | ||
end | ||
|
||
## | ||
# Provide a user friendly representation | ||
def to_s | ||
'#<Twilio.Api.V2010.UserDefinedMessageList>' | ||
end | ||
end | ||
|
||
class UserDefinedMessagePage < Page | ||
## | ||
# Initialize the UserDefinedMessagePage | ||
# @param [Version] version Version that contains the resource | ||
# @param [Response] response Response from the API | ||
# @param [Hash] solution Path solution for the resource | ||
# @return [UserDefinedMessagePage] UserDefinedMessagePage | ||
def initialize(version, response, solution) | ||
super(version, response) | ||
|
||
# Path Solution | ||
@solution = solution | ||
end | ||
|
||
## | ||
# Build an instance of UserDefinedMessageInstance | ||
# @param [Hash] payload Payload response from the API | ||
# @return [UserDefinedMessageInstance] UserDefinedMessageInstance | ||
def get_instance(payload) | ||
UserDefinedMessageInstance.new( | ||
@version, | ||
payload, | ||
account_sid: @solution[:account_sid], | ||
call_sid: @solution[:call_sid], | ||
) | ||
end | ||
|
||
## | ||
# Provide a user friendly representation | ||
def to_s | ||
'<Twilio.Api.V2010.UserDefinedMessagePage>' | ||
end | ||
end | ||
|
||
class UserDefinedMessageInstance < InstanceResource | ||
## | ||
# Initialize the UserDefinedMessageInstance | ||
# @param [Version] version Version that contains the resource | ||
# @param [Hash] payload payload that contains response from Twilio | ||
# @param [String] account_sid The SID of the | ||
# {Account}[https://www.twilio.com/docs/iam/api/account] that created User Defined | ||
# Message. | ||
# @param [String] call_sid The SID of the | ||
# {Call}[https://www.twilio.com/docs/voice/api/call-resource] the User Defined | ||
# Message is associated with. | ||
# @return [UserDefinedMessageInstance] UserDefinedMessageInstance | ||
def initialize(version, payload, account_sid: nil, call_sid: nil) | ||
super(version) | ||
|
||
# Marshaled Properties | ||
@properties = { | ||
'account_sid' => payload['account_sid'], | ||
'call_sid' => payload['call_sid'], | ||
'sid' => payload['sid'], | ||
'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), | ||
} | ||
end | ||
|
||
## | ||
# @return [String] Account Sid. | ||
def account_sid | ||
@properties['account_sid'] | ||
end | ||
|
||
## | ||
# @return [String] Call Sid. | ||
def call_sid | ||
@properties['call_sid'] | ||
end | ||
|
||
## | ||
# @return [String] A string that uniquely identifies this User Defined Message. | ||
def sid | ||
@properties['sid'] | ||
end | ||
|
||
## | ||
# @return [Time] The date this User Defined Message was created | ||
def date_created | ||
@properties['date_created'] | ||
end | ||
|
||
## | ||
# Provide a user friendly representation | ||
def to_s | ||
"<Twilio.Api.V2010.UserDefinedMessageInstance>" | ||
end | ||
|
||
## | ||
# Provide a detailed, user friendly representation | ||
def inspect | ||
"<Twilio.Api.V2010.UserDefinedMessageInstance>" | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.