Class: Twilio::REST::Proxy::V1::ServiceContext::PhoneNumberInstance

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

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, sid: 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) (defaults to: nil)

    The SID of the Call resource to fetch.



542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 542

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'] == nil ? payload['in_use'] : payload['in_use'].to_i,
    }

    # 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 PhoneNumber resource.

Returns:



586
587
588
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 586

def 
    @properties['account_sid']
end

#capabilitiesProxyV1ServicePhoneNumberCapabilities

Returns:

  • (ProxyV1ServicePhoneNumberCapabilities)


628
629
630
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 628

def capabilities
    @properties['capabilities']
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:



571
572
573
574
575
576
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 571

def context
    unless @instance_context
        @instance_context = PhoneNumberContext.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:



598
599
600
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 598

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:



604
605
606
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 604

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the PhoneNumberInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



653
654
655
656
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 653

def delete

    context.delete
end

#fetchPhoneNumberInstance

Fetch the PhoneNumberInstance

Returns:



661
662
663
664
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 661

def fetch

    context.fetch
end

#friendly_nameString

Returns The string that you assigned to describe the resource.

Returns:

  • (String)

    The string that you assigned to describe the resource.



616
617
618
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 616

def friendly_name
    @properties['friendly_name']
end

#in_useString

Returns The number of open session assigned to the number. See the [How many Phone Numbers do I need?](www.twilio.com/docs/proxy/phone-numbers-needed) guide for more information.

Returns:



646
647
648
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 646

def in_use
    @properties['in_use']
end

#inspectObject

Provide a detailed, user friendly representation



688
689
690
691
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 688

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

#is_reservedBoolean

Returns Whether the phone number 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:



640
641
642
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 640

def is_reserved
    @properties['is_reserved']
end

#iso_countryString

Returns The ISO Country Code for the phone number.

Returns:

  • (String)

    The ISO Country Code for the phone number.



622
623
624
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 622

def iso_country
    @properties['iso_country']
end

#phone_numberString

Returns The phone number in [E.164](www.twilio.com/docs/glossary/what-e164) format, which consists of a + followed by the country code and subscriber number.

Returns:



610
611
612
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 610

def phone_number
    @properties['phone_number']
end

#service_sidString

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

Returns:



592
593
594
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 592

def service_sid
    @properties['service_sid']
end

#sidString

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

Returns:

  • (String)

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



580
581
582
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 580

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



681
682
683
684
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 681

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

Parameters:

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

    Whether the phone number 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:



670
671
672
673
674
675
676
677
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 670

def update(
    is_reserved: :unset
)

    context.update(
        is_reserved: is_reserved, 
    )
end

#urlString

Returns The absolute URL of the PhoneNumber resource.

Returns:

  • (String)

    The absolute URL of the PhoneNumber resource.



634
635
636
# File 'lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb', line 634

def url
    @properties['url']
end