Class: Twilio::REST::Api::V2010::AccountContext::OutgoingCallerIdInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::OutgoingCallerIdInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the OutgoingCallerId resource.
-
#context ⇒ OutgoingCallerIdContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#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.
-
#delete ⇒ Boolean
Delete the OutgoingCallerIdInstance.
-
#fetch ⇒ OutgoingCallerIdInstance
Fetch the OutgoingCallerIdInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ OutgoingCallerIdInstance
constructor
Initialize the OutgoingCallerIdInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#phone_number ⇒ String
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.
-
#sid ⇒ String
The unique string that that we created to identify the OutgoingCallerId resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset) ⇒ OutgoingCallerIdInstance
Update the OutgoingCallerIdInstance.
-
#uri ⇒ String
The URI of the resource, relative to
https://api.twilio.com.
Constructor Details
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ OutgoingCallerIdInstance
Initialize the OutgoingCallerIdInstance
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 488 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' => account_sid ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the OutgoingCallerId resource.
545 546 547 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 545 def account_sid @properties['account_sid'] end |
#context ⇒ OutgoingCallerIdContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
512 513 514 515 516 517 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 512 def context unless @instance_context @instance_context = OutgoingCallerIdContext.new(@version , @params['account_sid'], @params['sid']) end @instance_context 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.
527 528 529 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 527 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.
533 534 535 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 533 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the OutgoingCallerIdInstance
564 565 566 567 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 564 def delete context.delete end |
#fetch ⇒ OutgoingCallerIdInstance
Fetch the OutgoingCallerIdInstance
572 573 574 575 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 572 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
539 540 541 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 539 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
599 600 601 602 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 599 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.OutgoingCallerIdInstance #{values}>" end |
#phone_number ⇒ String
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.
551 552 553 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 551 def phone_number @properties['phone_number'] end |
#sid ⇒ String
Returns The unique string that that we created to identify the OutgoingCallerId resource.
521 522 523 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 521 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
592 593 594 595 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 592 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
581 582 583 584 585 586 587 588 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 581 def update( friendly_name: :unset ) context.update( friendly_name: friendly_name, ) end |
#uri ⇒ String
Returns The URI of the resource, relative to https://api.twilio.com.
557 558 559 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 557 def uri @properties['uri'] end |