Class: Twilio::REST::Api::V2010::AccountContext::TokenInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::TokenInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/token.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Token resource.
-
#date_created ⇒ Time
The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#date_updated ⇒ Time
The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#ice_servers ⇒ Array<ApiV2010AccountTokenIceServers>
An array representing the ephemeral credentials and the STUN and TURN server URIs.
-
#initialize(version, payload, account_sid: nil) ⇒ TokenInstance
constructor
Initialize the TokenInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#password ⇒ String
The temporary password that the username will use when authenticating with Twilio.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#ttl ⇒ String
The duration in seconds for which the username and password are valid.
-
#username ⇒ String
The temporary username that uniquely identifies a Token.
Constructor Details
#initialize(version, payload, account_sid: nil) ⇒ TokenInstance
Initialize the TokenInstance
108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 108 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']), 'ice_servers' => payload['ice_servers'], 'password' => payload['password'], 'ttl' => payload['ttl'], 'username' => payload['username'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Token resource.
126 127 128 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 126 def account_sid @properties['account_sid'] end |
#date_created ⇒ Time
Returns The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
132 133 134 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 132 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
138 139 140 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 138 def date_updated @properties['date_updated'] end |
#ice_servers ⇒ Array<ApiV2010AccountTokenIceServers>
Returns An array representing the ephemeral credentials and the STUN and TURN server URIs.
144 145 146 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 144 def ice_servers @properties['ice_servers'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
174 175 176 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 174 def inspect "<Twilio.Api.V2010.TokenInstance>" end |
#password ⇒ String
Returns The temporary password that the username will use when authenticating with Twilio.
150 151 152 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 150 def password @properties['password'] end |
#to_s ⇒ Object
Provide a user friendly representation
168 169 170 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 168 def to_s "<Twilio.Api.V2010.TokenInstance>" end |
#ttl ⇒ String
Returns The duration in seconds for which the username and password are valid.
156 157 158 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 156 def ttl @properties['ttl'] end |
#username ⇒ String
Returns The temporary username that uniquely identifies a Token.
162 163 164 |
# File 'lib/twilio-ruby/rest/api/v2010/account/token.rb', line 162 def username @properties['username'] end |