Class: Twilio::REST::Proxy::V1::ServiceContext::PhoneNumberInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Proxy::V1::ServiceContext::PhoneNumberInstance
- Defined in:
- lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#capabilities ⇒ String
The capabilities of the phone number.
-
#context ⇒ PhoneNumberContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The ISO 8601 date and time in GMT when the resource was created.
-
#date_updated ⇒ Time
The ISO 8601 date and time in GMT when the resource was last updated.
-
#delete ⇒ Boolean
Deletes the PhoneNumberInstance.
-
#fetch ⇒ PhoneNumberInstance
Fetch a PhoneNumberInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#in_use ⇒ String
The number of open session assigned to the number.
-
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ PhoneNumberInstance
constructor
Initialize the PhoneNumberInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#is_reserved ⇒ Boolean
Reserve the phone number for manual assignment to participants only.
-
#iso_country ⇒ String
The ISO Country Code.
-
#phone_number ⇒ String
The phone number in E.164 format.
-
#service_sid ⇒ String
The SID of the PhoneNumber resource’s parent Service resource.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(is_reserved: :unset) ⇒ PhoneNumberInstance
Update the PhoneNumberInstance.
-
#url ⇒ String
The absolute URL of the PhoneNumber resource.
Constructor Details
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ PhoneNumberInstance
Initialize the PhoneNumberInstance
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 275 def initialize(version, payload, service_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'phone_number' => payload['phone_number'], 'friendly_name' => payload['friendly_name'], 'iso_country' => payload['iso_country'], 'capabilities' => payload['capabilities'], 'url' => payload['url'], 'is_reserved' => payload['is_reserved'], 'in_use' => payload['in_use'].to_i, } # Context @instance_context = nil @params = {'service_sid' => service_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
318 319 320 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 318 def account_sid @properties['account_sid'] end |
#capabilities ⇒ String
Returns The capabilities of the phone number.
360 361 362 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 360 def capabilities @properties['capabilities'] end |
#context ⇒ PhoneNumberContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
303 304 305 306 307 308 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 303 def context unless @instance_context @instance_context = PhoneNumberContext.new(@version, @params['service_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was created.
330 331 332 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 330 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was last updated.
336 337 338 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 336 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the PhoneNumberInstance
385 386 387 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 385 def delete context.delete end |
#fetch ⇒ PhoneNumberInstance
Fetch a PhoneNumberInstance
392 393 394 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 392 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
348 349 350 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 348 def friendly_name @properties['friendly_name'] end |
#in_use ⇒ String
Returns The number of open session assigned to the number.
378 379 380 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 378 def in_use @properties['in_use'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
416 417 418 419 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 416 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Proxy.V1.PhoneNumberInstance #{values}>" end |
#is_reserved ⇒ Boolean
Returns Reserve the phone number for manual assignment to participants only.
372 373 374 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 372 def is_reserved @properties['is_reserved'] end |
#iso_country ⇒ String
Returns The ISO Country Code.
354 355 356 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 354 def iso_country @properties['iso_country'] end |
#phone_number ⇒ String
Returns The phone number in E.164 format.
342 343 344 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 342 def phone_number @properties['phone_number'] end |
#service_sid ⇒ String
Returns The SID of the PhoneNumber resource’s parent Service resource.
324 325 326 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 324 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
312 313 314 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 312 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
409 410 411 412 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 409 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Proxy.V1.PhoneNumberInstance #{values}>" end |
#update(is_reserved: :unset) ⇒ PhoneNumberInstance
Update the PhoneNumberInstance
403 404 405 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 403 def update(is_reserved: :unset) context.update(is_reserved: is_reserved, ) end |
#url ⇒ String
Returns The absolute URL of the PhoneNumber resource.
366 367 368 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 366 def url @properties['url'] end |