Sha256: 1d53bb186b85b7c634e340ba017f5d28d9d07105b396f40ab309e1cfc50ff4a6
Contents?: true
Size: 1.78 KB
Versions: 47
Compression:
Stored size: 1.78 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 V2 < Version ## # Initialize the V2 version of Lookups def initialize(domain) super @version = 'v2' @phone_numbers = nil end ## # @param [String] phone_number The phone number to lookup in E.164 or national format. Default country code is +1 (North America). # @return [Twilio::REST::Lookups::V2::PhoneNumberContext] if phoneNumber was passed. # @return [Twilio::REST::Lookups::V2::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::V2>'; end end end end end
Version data entries
47 entries across 47 versions & 2 rubygems