Class: Twilio::REST::Verify::V2::ServiceContext::AccessTokenInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/verify/v2/service/access_token.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, sid: nil) ⇒ AccessTokenInstance

Initialize the AccessTokenInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this AccessToken resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 170

def initialize(version, payload , service_sid: nil, sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'account_sid' => payload['account_sid'],
        'service_sid' => payload['service_sid'],
        'entity_identity' => payload['entity_identity'],
        'factor_type' => payload['factor_type'],
        'factor_friendly_name' => payload['factor_friendly_name'],
        'token' => payload['token'],
        'url' => payload['url'],
        'ttl' => payload['ttl'] == nil ? payload['ttl'] : payload['ttl'].to_i,
        'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
    }

    # Context
    @instance_context = nil
    @params = { 'service_sid' => service_sid  || @properties['service_sid']  ,'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

Returns The unique SID identifier of the Account.

Returns:

  • (String)

    The unique SID identifier of the Account.



211
212
213
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 211

def 
    @properties['account_sid']
end

#contextAccessTokenContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



196
197
198
199
200
201
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 196

def context
    unless @instance_context
        @instance_context = AccessTokenContext.new(@version , @params['service_sid'], @params['sid'])
    end
    @instance_context
end

#date_createdTime

Returns The date that this access token was created, given in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



259
260
261
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 259

def date_created
    @properties['date_created']
end

#entity_identityString

Returns The unique external identifier for the Entity of the Service.

Returns:

  • (String)

    The unique external identifier for the Entity of the Service.



223
224
225
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 223

def entity_identity
    @properties['entity_identity']
end

#factor_friendly_nameString

Returns A human readable description of this factor, up to 64 characters. For a push factor, this can be the device’s name.

Returns:

  • (String)

    A human readable description of this factor, up to 64 characters. For a push factor, this can be the device’s name.



235
236
237
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 235

def factor_friendly_name
    @properties['factor_friendly_name']
end

#factor_typeFactorTypes

Returns:

  • (FactorTypes)


229
230
231
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 229

def factor_type
    @properties['factor_type']
end

#fetchAccessTokenInstance

Fetch the AccessTokenInstance

Returns:



266
267
268
269
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 266

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



280
281
282
283
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 280

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Verify.V2.AccessTokenInstance #{values}>"
end

#service_sidString

Returns The unique SID identifier of the Verify Service.

Returns:

  • (String)

    The unique SID identifier of the Verify Service.



217
218
219
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 217

def service_sid
    @properties['service_sid']
end

#sidString

Returns A 34 character string that uniquely identifies this Access Token.

Returns:

  • (String)

    A 34 character string that uniquely identifies this Access Token.



205
206
207
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 205

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



273
274
275
276
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 273

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Verify.V2.AccessTokenInstance #{values}>"
end

#tokenString

Returns The access token generated for enrollment, this is an encrypted json web token.

Returns:

  • (String)

    The access token generated for enrollment, this is an encrypted json web token.



241
242
243
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 241

def token
    @properties['token']
end

#ttlString

Returns How long, in seconds, the access token is valid. Max: 5 minutes.

Returns:

  • (String)

    How long, in seconds, the access token is valid. Max: 5 minutes



253
254
255
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 253

def ttl
    @properties['ttl']
end

#urlString

Returns The URL of this resource.

Returns:

  • (String)

    The URL of this resource.



247
248
249
# File 'lib/twilio-ruby/rest/verify/v2/service/access_token.rb', line 247

def url
    @properties['url']
end