class SezzleClient::TokenApi

Attributes

api_client[RW]

Public Class Methods

new(api_client = ApiClient.default) click to toggle source
# File lib/sezzle_client/api/token_api.rb, line 16
def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Public Instance Methods

get_v2_customer_token(token, opts = {}) click to toggle source

Get customer token @param token Customer initiated token, e.g. generated in mobile app @param [Hash] opts the optional parameters @return [nil]

# File lib/sezzle_client/api/token_api.rb, line 23
def get_v2_customer_token(token, opts = {})
  get_v2_customer_token_with_http_info(token, opts)
  nil
end
get_v2_customer_token_with_http_info(token, opts = {}) click to toggle source

Get customer token @param token Customer initiated token, e.g. generated in mobile app @param [Hash] opts the optional parameters @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers

# File lib/sezzle_client/api/token_api.rb, line 32
def get_v2_customer_token_with_http_info(token, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TokenApi.get_v2_customer_token ...'
  end
  # verify the required parameter 'token' is set
  if @api_client.config.client_side_validation && token.nil?
    fail ArgumentError, "Missing the required parameter 'token' when calling TokenApi.get_v2_customer_token"
  end
  # resource path
  local_var_path = '/token/{token}/customer'.sub('{' + 'token' + '}', token.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body]

  return_type = opts[:return_type]

  auth_names = opts[:auth_names] || ['Bearer']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TokenApi#get_v2_customer_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
get_v2_session_token(token, opts = {}) click to toggle source

Get session token @param token Merchant initiated token @param [Hash] opts the optional parameters @return [Token]

# File lib/sezzle_client/api/token_api.rb, line 75
def get_v2_session_token(token, opts = {})
  data, _status_code, _headers = get_v2_session_token_with_http_info(token, opts)
  data
end
get_v2_session_token_with_http_info(token, opts = {}) click to toggle source

Get session token @param token Merchant initiated token @param [Hash] opts the optional parameters @return [Array<(Token, Integer, Hash)>] Token data, response status code and response headers

# File lib/sezzle_client/api/token_api.rb, line 84
def get_v2_session_token_with_http_info(token, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TokenApi.get_v2_session_token ...'
  end
  # verify the required parameter 'token' is set
  if @api_client.config.client_side_validation && token.nil?
    fail ArgumentError, "Missing the required parameter 'token' when calling TokenApi.get_v2_session_token"
  end
  # resource path
  local_var_path = '/token/{token}/session'.sub('{' + 'token' + '}', token.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body]

  return_type = opts[:return_type] || 'Token'

  auth_names = opts[:auth_names] || ['Bearer']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TokenApi#get_v2_session_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end