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
Account Sid.
-
#capabilities ⇒ String
A list of capabilities.
-
#context ⇒ PhoneNumberContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date this Phone Number was created.
-
#date_updated ⇒ Time
The date this Phone Number was updated.
-
#delete ⇒ Boolean
Deletes the PhoneNumberInstance.
-
#fetch ⇒ PhoneNumberInstance
Fetch a PhoneNumberInstance.
-
#friendly_name ⇒ String
A human readable description of this resource.
-
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ PhoneNumberInstance
constructor
Initialize the PhoneNumberInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#iso_country ⇒ String
ISO Country Code,.
-
#phone_number ⇒ String
The phone number.
-
#service_sid ⇒ String
Service Sid.
-
#sid ⇒ String
A string that uniquely identifies this Phone Number.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ PhoneNumberInstance
Initialize the PhoneNumberInstance
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 226 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'], } # Context @instance_context = nil @params = {'service_sid' => service_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns Account Sid.
267 268 269 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 267 def account_sid @properties['account_sid'] end |
#capabilities ⇒ String
Returns A list of capabilities.
309 310 311 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 309 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
252 253 254 255 256 257 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 252 def context unless @instance_context @instance_context = PhoneNumberContext.new(@version, @params['service_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date this Phone Number was created.
279 280 281 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 279 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date this Phone Number was updated.
285 286 287 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 285 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the PhoneNumberInstance
322 323 324 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 322 def delete context.delete end |
#fetch ⇒ PhoneNumberInstance
Fetch a PhoneNumberInstance
329 330 331 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 329 def fetch context.fetch end |
#friendly_name ⇒ String
Returns A human readable description of this resource.
297 298 299 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 297 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
342 343 344 345 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 342 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Proxy.V1.PhoneNumberInstance #{values}>" end |
#iso_country ⇒ String
Returns ISO Country Code,.
303 304 305 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 303 def iso_country @properties['iso_country'] end |
#phone_number ⇒ String
Returns The phone number.
291 292 293 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 291 def phone_number @properties['phone_number'] end |
#service_sid ⇒ String
Returns Service Sid.
273 274 275 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 273 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns A string that uniquely identifies this Phone Number.
261 262 263 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 261 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
335 336 337 338 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 335 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Proxy.V1.PhoneNumberInstance #{values}>" end |
#url ⇒ String
Returns The URL of this resource.
315 316 317 |
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 315 def url @properties['url'] end |