Class: Twilio::REST::Api::V2010::AccountContext::AddressInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::AddressInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/address.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that is responsible for the resource.
-
#city ⇒ String
The city in which the address is located.
-
#context ⇒ AddressContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#customer_name ⇒ String
The name associated with the address.
-
#date_created ⇒ Time
The RFC 2822 date and time in GMT that the resource was created.
-
#date_updated ⇒ Time
The RFC 2822 date and time in GMT that the resource was last updated.
-
#delete ⇒ Boolean
Deletes the AddressInstance.
-
#dependent_phone_numbers ⇒ dependent_phone_numbers
Access the dependent_phone_numbers.
-
#emergency_enabled ⇒ Boolean
Whether emergency calling has been enabled on this number.
-
#fetch ⇒ AddressInstance
Fetch a AddressInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ AddressInstance
constructor
Initialize the AddressInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#iso_country ⇒ String
The ISO country code of the address.
-
#postal_code ⇒ String
The postal code of the address.
-
#region ⇒ String
The state or region of the address.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#street ⇒ String
The number and street address of the address.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset, customer_name: :unset, street: :unset, city: :unset, region: :unset, postal_code: :unset, emergency_enabled: :unset, auto_correct_address: :unset) ⇒ AddressInstance
Update the AddressInstance.
-
#uri ⇒ String
The URI of the resource, relative to ‘api.twilio.com`.
-
#validated ⇒ Boolean
Whether the address has been validated to comply with local regulation.
-
#verified ⇒ Boolean
Whether the address has been verified to comply with regulation.
Constructor Details
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ AddressInstance
Initialize the AddressInstance
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 342 def initialize(version, payload, account_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'city' => payload['city'], 'customer_name' => payload['customer_name'], 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), 'friendly_name' => payload['friendly_name'], 'iso_country' => payload['iso_country'], 'postal_code' => payload['postal_code'], 'region' => payload['region'], 'sid' => payload['sid'], 'street' => payload['street'], 'uri' => payload['uri'], 'emergency_enabled' => payload['emergency_enabled'], 'validated' => payload['validated'], 'verified' => payload['verified'], } # 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 that is responsible for the resource.
382 383 384 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 382 def account_sid @properties['account_sid'] end |
#city ⇒ String
Returns The city in which the address is located.
388 389 390 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 388 def city @properties['city'] end |
#context ⇒ AddressContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
373 374 375 376 377 378 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 373 def context unless @instance_context @instance_context = AddressContext.new(@version, @params['account_sid'], @params['sid'], ) end @instance_context end |
#customer_name ⇒ String
Returns The name associated with the address.
394 395 396 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 394 def customer_name @properties['customer_name'] end |
#date_created ⇒ Time
Returns The RFC 2822 date and time in GMT that the resource was created.
400 401 402 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 400 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The RFC 2822 date and time in GMT that the resource was last updated.
406 407 408 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 406 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the AddressInstance
473 474 475 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 473 def delete context.delete end |
#dependent_phone_numbers ⇒ dependent_phone_numbers
Access the dependent_phone_numbers
516 517 518 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 516 def dependent_phone_numbers context.dependent_phone_numbers end |
#emergency_enabled ⇒ Boolean
Returns Whether emergency calling has been enabled on this number.
454 455 456 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 454 def emergency_enabled @properties['emergency_enabled'] end |
#fetch ⇒ AddressInstance
Fetch a AddressInstance
480 481 482 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 480 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
412 413 414 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 412 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
529 530 531 532 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 529 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.AddressInstance #{values}>" end |
#iso_country ⇒ String
Returns The ISO country code of the address.
418 419 420 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 418 def iso_country @properties['iso_country'] end |
#postal_code ⇒ String
Returns The postal code of the address.
424 425 426 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 424 def postal_code @properties['postal_code'] end |
#region ⇒ String
Returns The state or region of the address.
430 431 432 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 430 def region @properties['region'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
436 437 438 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 436 def sid @properties['sid'] end |
#street ⇒ String
Returns The number and street address of the address.
442 443 444 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 442 def street @properties['street'] end |
#to_s ⇒ Object
Provide a user friendly representation
522 523 524 525 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 522 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.AddressInstance #{values}>" end |
#update(friendly_name: :unset, customer_name: :unset, street: :unset, city: :unset, region: :unset, postal_code: :unset, emergency_enabled: :unset, auto_correct_address: :unset) ⇒ AddressInstance
Update the AddressInstance
500 501 502 503 504 505 506 507 508 509 510 511 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 500 def update(friendly_name: :unset, customer_name: :unset, street: :unset, city: :unset, region: :unset, postal_code: :unset, emergency_enabled: :unset, auto_correct_address: :unset) context.update( friendly_name: friendly_name, customer_name: customer_name, street: street, city: city, region: region, postal_code: postal_code, emergency_enabled: emergency_enabled, auto_correct_address: auto_correct_address, ) end |
#uri ⇒ String
Returns The URI of the resource, relative to ‘api.twilio.com`.
448 449 450 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 448 def uri @properties['uri'] end |
#validated ⇒ Boolean
Returns Whether the address has been validated to comply with local regulation.
460 461 462 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 460 def validated @properties['validated'] end |
#verified ⇒ Boolean
Returns Whether the address has been verified to comply with regulation.
466 467 468 |
# File 'lib/twilio-ruby/rest/api/v2010/account/address.rb', line 466 def verified @properties['verified'] end |