lib/twilio-ruby/rest/api/v2010/account/token.rb in twilio-ruby-5.0.0.rc18 vs lib/twilio-ruby/rest/api/v2010/account/token.rb in twilio-ruby-5.0.0.rc19

- old
+ new

@@ -1,10 +1,10 @@ ## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 -# / / +# / / module Twilio module REST class Api < Domain class V2010 < Version @@ -16,49 +16,49 @@ # @param [String] account_sid The unique id of the Account that created this # Token. # @return [TokenList] TokenList def initialize(version, account_sid: nil) super(version) - + # Path Solution @solution = { account_sid: account_sid } @uri = "/Accounts/#{@solution[:account_sid]}/Tokens.json" end - + ## # Retrieve a single page of TokenInstance records from the API. # Request is executed immediately. # @param [String] ttl The duration in seconds for which the generated credentials # are valid # @return [TokenInstance] Newly created TokenInstance def create(ttl: nil) data = { 'Ttl' => ttl, } - + payload = @version.create( 'POST', @uri, data: data ) - + return TokenInstance.new( @version, payload, account_sid: @solution[:account_sid], ) end - + ## # Provide a user friendly representation def to_s '#<Twilio.Api.V2010.TokenList>' end end - + class TokenPage < Page ## # Initialize the TokenPage # @param [Version] version Version that contains the resource # @param [Response] response Response from the API @@ -66,15 +66,15 @@ # @param [String] account_sid The unique id of the Account that created this # Token. # @return [TokenPage] TokenPage def initialize(version, response, solution) super(version, response) - + # Path Solution @solution = solution end - + ## # Build an instance of TokenInstance # @param [Hash] payload Payload response from the API # @return [TokenInstance] TokenInstance def get_instance(payload) @@ -82,29 +82,29 @@ @version, payload, account_sid: @solution[:account_sid], ) end - + ## # Provide a user friendly representation def to_s '<Twilio.Api.V2010.TokenPage>' end end - + class TokenInstance < InstanceResource ## # Initialize the TokenInstance # @param [Version] version Version that contains the resource # @param [Hash] payload payload that contains response from Twilio # @param [String] account_sid The unique id of the Account that created this # Token. # @return [TokenInstance] TokenInstance def initialize(version, payload, account_sid: nil) super(version) - + # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), @@ -112,38 +112,38 @@ 'password' => payload['password'], 'ttl' => payload['ttl'], 'username' => payload['username'], } end - + def account_sid @properties['account_sid'] end - + def date_created @properties['date_created'] end - + def date_updated @properties['date_updated'] end - + def ice_servers @properties['ice_servers'] end - + def password @properties['password'] end - + def ttl @properties['ttl'] end - + def username @properties['username'] end - + ## # Provide a user friendly representation def to_s "<Twilio.Api.V2010.TokenInstance>" end \ No newline at end of file