class Xolphin::Api::Client

Public Class Methods

new(username, password, test = false) click to toggle source
# File lib/xolphin/api/client.rb, line 4
def initialize(username, password, test = false)
  @http = Xolphin::Api::Http.new(username, password, test: test)
end

Public Instance Methods

certificate() click to toggle source
# File lib/xolphin/api/client.rb, line 12
def certificate
  Xolphin::Api::Endpoint::Certificate.new(@http)
end
request() click to toggle source
# File lib/xolphin/api/client.rb, line 8
def request
  Xolphin::Api::Endpoint::Request.new(@http)
end
support() click to toggle source
# File lib/xolphin/api/client.rb, line 16
def support
  Xolphin::Api::Endpoint::Support.new(@http)
end