Sha256: b8affc8f2a789f314a96041ea29f1cb2042736792fcae4cb220a73d163bac3b2
Contents?: true
Size: 1.85 KB
Versions: 47
Compression:
Stored size: 1.85 KB
Contents
## # This code was generated by # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ # # Twilio - Lookups # This is the public Twilio REST API. # # NOTE: This class is auto generated by OpenAPI Generator. # https://openapi-generator.tech # Do not edit the class manually. # 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 ## # @param [String] phone_number The phone number to lookup in [E.164](https://www.twilio.com/docs/glossary/what-e164) format, which consists of a + followed by the country code and subscriber number. # @return [Twilio::REST::Lookups::V1::PhoneNumberContext] if phoneNumber was passed. # @return [Twilio::REST::Lookups::V1::PhoneNumberList] def phone_numbers(phone_number=:unset) if phone_number.nil? raise ArgumentError, 'phone_number cannot be nil' end if phone_number == :unset @phone_numbers ||= PhoneNumberList.new self else PhoneNumberContext.new(self, phone_number) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Lookups::V1>'; end end end end end
Version data entries
47 entries across 47 versions & 2 rubygems