Sha256: b6e0ee243b6ef554c1108be16f0475b0979f558b273b6c54184640fd5ce736cd

Contents?: true

Size: 797 Bytes

Versions: 2

Compression:

Stored size: 797 Bytes

Contents

##
# This code was generated by
# \ / _    _  _|   _  _
#  | (_)\/(_)(_|\/| |(/_  v1.0.0
#       /       /

module Twilio
  module REST
    class Lookups
      class V1 < Version
        ##
        # Initialize the V1 version of Lookups
        def initialize(domain)
          super
          @version = 'v1'
          @phone_numbers = nil
        end

        def phone_numbers(sid=:unset)
          if sid.nil?
            raise ArgumentError, 'sid cannot be nil'
          elsif sid == :unset
            @phone_numbers ||= PhoneNumberList.new self
          else
            PhoneNumberContext.new(self, sid)
          end
        end

        ##
        # Provide a user friendly representation
        def to_s
          '<Twilio::REST::Lookups::V1>'
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
twilio-ruby-5.0.0.rc26 lib/twilio-ruby/rest/lookups/v1.rb
twilio-ruby-5.0.0.rc25 lib/twilio-ruby/rest/lookups/v1.rb