Class: Twilio::REST::Api::V2010::AccountContext::SipList::DomainContext::AuthTypesList::AuthTypeCallsList::AuthCallsCredentialListMappingInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, account_sid: nil, domain_sid: nil, sid: nil) ⇒ AuthCallsCredentialListMappingInstance

Initialize the AuthCallsCredentialListMappingInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    The SID of the Account that created this AuthCallsCredentialListMapping resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 247

def initialize(version, payload , account_sid: nil, domain_sid: nil, 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']),
        'friendly_name' => payload['friendly_name'],
        'sid' => payload['sid'],
    }

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

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the CredentialListMapping resource.

Returns:



277
278
279
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 277

def 
    @properties['account_sid']
end

#contextAuthCallsCredentialListMappingContext

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

Returns:



268
269
270
271
272
273
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 268

def context
    unless @instance_context
        @instance_context = AuthCallsCredentialListMappingContext.new(@version , @params['account_sid'], @params['domain_sid'], @params['sid'])
    end
    @instance_context
end

#date_createdTime

Returns The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



283
284
285
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 283

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



289
290
291
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 289

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the AuthCallsCredentialListMappingInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



308
309
310
311
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 308

def delete

    context.delete
end

#fetchAuthCallsCredentialListMappingInstance

Fetch the AuthCallsCredentialListMappingInstance

Returns:



316
317
318
319
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 316

def fetch

    context.fetch
end

#friendly_nameString

Returns The string that you assigned to describe the resource.

Returns:

  • (String)

    The string that you assigned to describe the resource.



295
296
297
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 295

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



330
331
332
333
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 330

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

#sidString

Returns The unique string that that we created to identify the CredentialListMapping resource.

Returns:

  • (String)

    The unique string that that we created to identify the CredentialListMapping resource.



301
302
303
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 301

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



323
324
325
326
# File 'lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb', line 323

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