Class: Twilio::REST::Routes::V2::PhoneNumberInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/routes/v2/phone_number.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, phone_number: nil) ⇒ PhoneNumberInstance

Initialize the PhoneNumberInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this PhoneNumber resource.

  • sid (String)

    The SID of the Call resource to fetch.



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 160

def initialize(version, payload , phone_number: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'phone_number' => payload['phone_number'],
        'url' => payload['url'],
        'sid' => payload['sid'],
        'account_sid' => payload['account_sid'],
        'friendly_name' => payload['friendly_name'],
        'voice_region' => payload['voice_region'],
        'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
        'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
    }

    # Context
    @instance_context = nil
    @params = { 'phone_number' => phone_number  || @properties['phone_number']  , }
end

Instance Method Details

#account_sidString

Returns The unique SID identifier of the Account.

Returns:

  • (String)

    The unique SID identifier of the Account.



211
212
213
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 211

def 
    @properties['account_sid']
end

#contextPhoneNumberContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



184
185
186
187
188
189
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 184

def context
    unless @instance_context
        @instance_context = PhoneNumberContext.new(@version , @params['phone_number'])
    end
    @instance_context
end

#date_createdTime

Returns The date that this phone number was assigned an Inbound Processing Region, given in ISO 8601 format.

Returns:

  • (Time)

    The date that this phone number was assigned an Inbound Processing Region, given in ISO 8601 format.



229
230
231
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 229

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date that the Inbound Processing Region was updated for this phone number, given in ISO 8601 format.

Returns:

  • (Time)

    The date that the Inbound Processing Region was updated for this phone number, given in ISO 8601 format.



235
236
237
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 235

def date_updated
    @properties['date_updated']
end

#fetchPhoneNumberInstance

Fetch the PhoneNumberInstance

Returns:



242
243
244
245
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 242

def fetch

    context.fetch
end

#friendly_nameString

Returns A human readable description of the Inbound Processing Region assignments for this phone number, up to 64 characters.

Returns:

  • (String)

    A human readable description of the Inbound Processing Region assignments for this phone number, up to 64 characters.



217
218
219
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 217

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



272
273
274
275
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 272

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

#phone_numberString

Returns The phone number in E.164 format.

Returns:

  • (String)

    The phone number in E.164 format



193
194
195
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 193

def phone_number
    @properties['phone_number']
end

#sidString

Returns A 34 character string that uniquely identifies the Inbound Processing Region assignments for this phone number.

Returns:

  • (String)

    A 34 character string that uniquely identifies the Inbound Processing Region assignments for this phone number.



205
206
207
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 205

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



265
266
267
268
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 265

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Routes.V2.PhoneNumberInstance #{values}>"
end

#update(voice_region: :unset, friendly_name: :unset) ⇒ PhoneNumberInstance

Update the PhoneNumberInstance

Parameters:

  • voice_region (String) (defaults to: :unset)

    The Inbound Processing Region used for this phone number for voice

  • friendly_name (String) (defaults to: :unset)

    A human readable description of this resource, up to 64 characters.

Returns:



252
253
254
255
256
257
258
259
260
261
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 252

def update(
    voice_region: :unset, 
    friendly_name: :unset
)

    context.update(
        voice_region: voice_region, 
        friendly_name: friendly_name, 
    )
end

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource.



199
200
201
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 199

def url
    @properties['url']
end

#voice_regionString

Returns The Inbound Processing Region used for this phone number for voice.

Returns:

  • (String)

    The Inbound Processing Region used for this phone number for voice.



223
224
225
# File 'lib/twilio-ruby/rest/routes/v2/phone_number.rb', line 223

def voice_region
    @properties['voice_region']
end