## # This code was generated by # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ # # Twilio - Api # 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 Api < ApiBase class V2010 < Version class AccountContext < InstanceContext class SipList < ListResource ## # Initialize the SipList # @param [Version] version Version that contains the resource # @return [SipList] SipList def initialize(version, account_sid: nil) super(version) # Path Solution @solution = { account_sid: account_sid } @uri = "/Accounts/#{@solution[:account_sid]}/SIP.json" # Components @domains = nil @credential_lists = nil @ip_access_control_lists = nil end ## # Access the domains # @return [DomainList] # @return [DomainContext] if sid was passed. def domains(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return DomainContext.new(@version, @solution[:account_sid],sid ) end @domains ||= DomainList.new(@version, account_sid: @solution[:account_sid] ) end ## # Access the credential_lists # @return [CredentialListList] # @return [CredentialListContext] if sid was passed. def credential_lists(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return CredentialListContext.new(@version, @solution[:account_sid],sid ) end @credential_lists ||= CredentialListList.new(@version, account_sid: @solution[:account_sid] ) end ## # Access the ip_access_control_lists # @return [IpAccessControlListList] # @return [IpAccessControlListContext] if sid was passed. def ip_access_control_lists(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return IpAccessControlListContext.new(@version, @solution[:account_sid],sid ) end @ip_access_control_lists ||= IpAccessControlListList.new(@version, account_sid: @solution[:account_sid] ) end # Provide a user friendly representation def to_s '#' end end class SipPage < Page ## # Initialize the SipPage # @param [Version] version Version that contains the resource # @param [Response] response Response from the API # @param [Hash] solution Path solution for the resource # @return [SipPage] SipPage def initialize(version, response, solution) super(version, response) # Path Solution @solution = solution end ## # Build an instance of SipInstance # @param [Hash] payload Payload response from the API # @return [SipInstance] SipInstance def get_instance(payload) SipInstance.new(@version, payload, account_sid: @solution[:account_sid]) end ## # Provide a user friendly representation def to_s '' end end class SipInstance < InstanceResource ## # Initialize the SipInstance # @param [Version] version Version that contains the resource # @param [Hash] payload payload that contains response from Twilio # @param [String] account_sid The SID of the # {Account}[https://www.twilio.com/docs/iam/api/account] that created this Sip # resource. # @param [String] sid The SID of the Call resource to fetch. # @return [SipInstance] SipInstance def initialize(version , account_sid: nil) super(version) end ## # Provide a user friendly representation def to_s "" end ## # Provide a detailed, user friendly representation def inspect "" end end end end end end end