## # This code was generated by # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ # # NOTE: This class is auto generated by OpenAPI Generator. # https://openapi-generator.tech # Do not edit the class manually. # frozen_string_literal: true module Twilio module REST class PreviewBase < Domain ## # Initialize preview domain # # @param twilio - The twilio client # def initialize(twilio) super(twilio) @base_url = "https://preview.twilio.com" @host = "preview.twilio.com" @port = 443 @hosted_numbers = nil @sync = nil @marketplace = nil @wireless = nil end def hosted_numbers @hosted_numbers ||= Preview::HostedNumbers.new self end def sync @sync ||= Preview::Sync.new self end def marketplace @marketplace ||= Preview::Marketplace.new self end def wireless @wireless ||= Preview::Wireless.new self end ## # Provide a user friendly representation def to_s ''; end end end end