Class: Twilio::REST::Pricing::V2::VoiceList

Inherits:
ListResource show all
Defined in:
lib/twilio-ruby/rest/pricing/v2/voice.rb,
lib/twilio-ruby/rest/pricing/v2/voice/number.rb,
lib/twilio-ruby/rest/pricing/v2/voice/country.rb

Defined Under Namespace

Classes: CountryContext, CountryInstance, CountryInstanceMetadata, CountryList, CountryListResponse, CountryPage, CountryPageMetadata, NumberContext, NumberInstance, NumberInstanceMetadata, NumberList, NumberListResponse, NumberPage, NumberPageMetadata

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ VoiceList

Initialize the VoiceList

Parameters:

  • version (Version)

    Version that contains the resource



26
27
28
29
30
31
32
33
34
35
# File 'lib/twilio-ruby/rest/pricing/v2/voice.rb', line 26

def initialize(version)
    super(version)
    
    # Path Solution
    @solution = {  }
    @uri = "/Voice"
    # Components
    @countries = nil
    @numbers = nil
end

Instance Method Details

#countries(iso_country = :unset) ⇒ CountryList, CountryContext

Access the countries

Returns:

Raises:

  • (ArgumentError)


42
43
44
45
46
47
48
49
50
# File 'lib/twilio-ruby/rest/pricing/v2/voice.rb', line 42

def countries(iso_country=:unset)
    raise ArgumentError, 'iso_country cannot be nil' if iso_country.nil?

    if iso_country != :unset
        return CountryContext.new(@version,iso_country )
    end

    @countries ||= CountryList.new(@version )
end

#numbers(destination_number = :unset) ⇒ NumberList, NumberContext

Access the numbers

Returns:

Raises:

  • (ArgumentError)


55
56
57
58
59
60
61
62
63
# File 'lib/twilio-ruby/rest/pricing/v2/voice.rb', line 55

def numbers(destination_number=:unset)
    raise ArgumentError, 'destination_number cannot be nil' if destination_number.nil?

    if destination_number != :unset
        return NumberContext.new(@version,destination_number )
    end

    @numbers ||= NumberList.new(@version )
end

#to_sObject

Provide a user friendly representation



66
67
68
# File 'lib/twilio-ruby/rest/pricing/v2/voice.rb', line 66

def to_s
    '#<Twilio.Pricing.V2.VoiceList>'
end