Class: Twilio::REST::Api::V2010::AccountContext::TokenList

Inherits:
ListResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/token.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, account_sid: nil) ⇒ TokenList

Initialize the TokenList

Parameters:



21
22
23
24
25
26
27
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 21

def initialize(version, account_sid: nil)
  super(version)

  # Path Solution
  @solution = {account_sid: }
  @uri = "/Accounts/#{@solution[:account_sid]}/Tokens.json"
end

Instance Method Details

#create(ttl: :unset) ⇒ TokenInstance

Retrieve a single page of TokenInstance records from the API. Request is executed immediately.

Parameters:

  • ttl (String) (defaults to: :unset)

    The duration in seconds for which the generated credentials are valid, the default value is 86400 (24 hours).

Returns:



35
36
37
38
39
40
41
42
43
44
45
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 35

def create(ttl: :unset)
  data = Twilio::Values.of({'Ttl' => ttl, })

  payload = @version.create(
      'POST',
      @uri,
      data: data
  )

  TokenInstance.new(@version, payload, account_sid: @solution[:account_sid], )
end

#to_sObject

Provide a user friendly representation



49
50
51
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 49

def to_s
  '#<Twilio.Api.V2010.TokenList>'
end