lib/twilio-ruby/rest/lookups/v1.rb in twilio-ruby-5.77.0 vs lib/twilio-ruby/rest/lookups/v1.rb in twilio-ruby-6.0.0.pre.rc.1
- old
+ new
@@ -1,46 +1,49 @@
##
-# This code was generated by
-# \ / _ _ _| _ _
-# | (_)\/(_)(_|\/| |(/_ v1.0.0
-# / /
+# This code was generated by
+# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
+# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
+# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
#
-# frozen_string_literal: true
+# 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
+ 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 phone_number 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
+ ##
+ # @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
-
- ##
- # Provide a user friendly representation
- def to_s
- '<Twilio::REST::Lookups::V1>'
- end
- end
end
- end
-end
\ No newline at end of file
+end