Class: Twilio::REST::Api::V2010::AccountContext::OutgoingCallerIdInstance

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

Instance Method Summary collapse

Constructor Details

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

Initialize the OutgoingCallerIdInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    The unique id of the Account responsible for this Caller Id.

  • sid (String) (defaults to: nil)

    The outgoing-caller-id Sid that uniquely identifies this resource



250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 250

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

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
      'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
      'friendly_name' => payload['friendly_name'],
      'account_sid' => payload['account_sid'],
      'phone_number' => payload['phone_number'],
      'uri' => payload['uri'],
  }

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

Instance Method Details

#account_sidString

Returns The unique sid that identifies this account.

Returns:

  • (String)

    The unique sid that identifies this account



306
307
308
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 306

def 
  @properties['account_sid']
end

#contextOutgoingCallerIdContext

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

Returns:



273
274
275
276
277
278
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 273

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

#date_createdTime

Returns The date this resource was created.

Returns:

  • (Time)

    The date this resource was created



288
289
290
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 288

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The date this resource was last updated.

Returns:

  • (Time)

    The date this resource was last updated



294
295
296
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 294

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Deletes the OutgoingCallerIdInstance

Returns:

  • (Boolean)

    true if delete succeeds, true otherwise



340
341
342
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 340

def delete
  context.delete
end

#fetchOutgoingCallerIdInstance

Fetch a OutgoingCallerIdInstance

Returns:



325
326
327
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 325

def fetch
  context.fetch
end

#friendly_nameString

Returns A human readable description for this resource.

Returns:

  • (String)

    A human readable description for this resource



300
301
302
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 300

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



353
354
355
356
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 353

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

#phone_numberString

Returns The incoming phone number.

Returns:

  • (String)

    The incoming phone number



312
313
314
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 312

def phone_number
  @properties['phone_number']
end

#sidString

Returns A string that uniquely identifies this outgoing-caller-ids.

Returns:

  • (String)

    A string that uniquely identifies this outgoing-caller-ids



282
283
284
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 282

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation



346
347
348
349
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 346

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

#update(friendly_name: :unset) ⇒ OutgoingCallerIdInstance

Update the OutgoingCallerIdInstance

Parameters:

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

    A human readable description of the caller ID

Returns:



333
334
335
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 333

def update(friendly_name: :unset)
  context.update(friendly_name: friendly_name, )
end

#uriString

Returns The URI for this resource.

Returns:

  • (String)

    The URI for this resource



318
319
320
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 318

def uri
  @properties['uri']
end