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 SID of the Account that created this OutgoingCallerId resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



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

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 SID of the [Account](www.twilio.com/docs/iam/api/account) that created the OutgoingCallerId resource.

Returns:



309
310
311
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 309

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:



276
277
278
279
280
281
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 276

def context
    unless @instance_context
        @instance_context = OutgoingCallerIdContext.new(@version , @params['account_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:



291
292
293
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 291

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:



297
298
299
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 297

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the OutgoingCallerIdInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



328
329
330
331
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 328

def delete

    context.delete
end

#fetchOutgoingCallerIdInstance

Fetch the OutgoingCallerIdInstance

Returns:



336
337
338
339
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 336

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.



303
304
305
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 303

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



363
364
365
366
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 363

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

#phone_numberString

Returns The phone number in [E.164](www.twilio.com/docs/glossary/what-e164) format, which consists of a + followed by the country code and subscriber number.

Returns:



315
316
317
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 315

def phone_number
    @properties['phone_number']
end

#sidString

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

Returns:

  • (String)

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



285
286
287
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 285

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



356
357
358
359
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 356

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 descriptive string that you create to describe the resource. It can be up to 64 characters long.

Returns:



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

def update(
    friendly_name: :unset
)

    context.update(
        friendly_name: friendly_name, 
    )
end

#uriString

Returns The URI of the resource, relative to ‘api.twilio.com`.

Returns:

  • (String)

    The URI of the resource, relative to ‘api.twilio.com`.



321
322
323
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 321

def uri
    @properties['uri']
end