Class: Twilio::REST::Proxy::V1::ServiceContext::ShortCodeInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/proxy/v1/service/short_code.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, sid: nil) ⇒ ShortCodeInstance

Initialize the ShortCodeInstance

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 ShortCode resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 263

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']),
        'short_code' => payload['short_code'],
        'iso_country' => payload['iso_country'],
        'capabilities' => payload['capabilities'],
        'url' => payload['url'],
        'is_reserved' => payload['is_reserved'],
    }

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

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the ShortCode resource.

Returns:



304
305
306
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 304

def 
    @properties['account_sid']
end

#capabilitiesProxyV1ServiceShortCodeCapabilities

Returns:

  • (ProxyV1ServiceShortCodeCapabilities)


340
341
342
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 340

def capabilities
    @properties['capabilities']
end

#contextShortCodeContext

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

Returns:



289
290
291
292
293
294
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 289

def context
    unless @instance_context
        @instance_context = ShortCodeContext.new(@version , @params['service_sid'], @params['sid'])
    end
    @instance_context
end

#date_createdTime

Returns The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time in GMT when the resource was created.

Returns:



316
317
318
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 316

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time in GMT when the resource was last updated.

Returns:



322
323
324
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 322

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the ShortCodeInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



359
360
361
362
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 359

def delete

    context.delete
end

#fetchShortCodeInstance

Fetch the ShortCodeInstance

Returns:



367
368
369
370
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 367

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



394
395
396
397
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 394

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

#is_reservedBoolean

Returns Whether the short code should be reserved and not be assigned to a participant using proxy pool logic. See [Reserved Phone Numbers](www.twilio.com/docs/proxy/reserved-phone-numbers) for more information.

Returns:



352
353
354
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 352

def is_reserved
    @properties['is_reserved']
end

#iso_countryString

Returns The ISO Country Code for the short code.

Returns:

  • (String)

    The ISO Country Code for the short code.



334
335
336
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 334

def iso_country
    @properties['iso_country']
end

#service_sidString

Returns The SID of the ShortCode resource’s parent [Service](www.twilio.com/docs/proxy/api/service) resource.

Returns:



310
311
312
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 310

def service_sid
    @properties['service_sid']
end

#short_codeString

Returns The short code’s number.

Returns:

  • (String)

    The short code’s number.



328
329
330
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 328

def short_code
    @properties['short_code']
end

#sidString

Returns The unique string that we created to identify the ShortCode resource.

Returns:

  • (String)

    The unique string that we created to identify the ShortCode resource.



298
299
300
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 298

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



387
388
389
390
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 387

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

#update(is_reserved: :unset) ⇒ ShortCodeInstance

Update the ShortCodeInstance

Parameters:

  • is_reserved (Boolean) (defaults to: :unset)

    Whether the short code should be reserved and not be assigned to a participant using proxy pool logic. See [Reserved Phone Numbers](www.twilio.com/docs/proxy/reserved-phone-numbers) for more information.

Returns:



376
377
378
379
380
381
382
383
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 376

def update(
    is_reserved: :unset
)

    context.update(
        is_reserved: is_reserved, 
    )
end

#urlString

Returns The absolute URL of the ShortCode resource.

Returns:

  • (String)

    The absolute URL of the ShortCode resource.



346
347
348
# File 'lib/twilio-ruby/rest/proxy/v1/service/short_code.rb', line 346

def url
    @properties['url']
end