Class: Io::Flow::V0::Clients::CheckoutTokens

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ CheckoutTokens



5559
5560
5561
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5559

def initialize(client)
  @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client)
end

Instance Method Details

#delete_checkout_and_tokens_by_id(id) ⇒ Object



5569
5570
5571
5572
5573
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5569

def delete_checkout_and_tokens_by_id(id)
  HttpClient::Preconditions.assert_class('id', id, String)
  r = @client.request("/checkout/tokens/#{CGI.escape(id)}").delete
  nil
end

#get_checkout_and_tokens_by_id(id) ⇒ Object



5563
5564
5565
5566
5567
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5563

def get_checkout_and_tokens_by_id(id)
  HttpClient::Preconditions.assert_class('id', id, String)
  r = @client.request("/checkout/tokens/#{CGI.escape(id)}").get
  ::Io::Flow::V0::Models::CheckoutToken.new(r)
end

#post_checkout_and_tokens_by_organization(organization, checkout_token_form, incoming = {}) ⇒ Object



5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5575

def post_checkout_and_tokens_by_organization(organization, checkout_token_form, incoming={})
  HttpClient::Preconditions.assert_class('organization', organization, String)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  query = {
    :context => (x = opts.delete(:context); x.nil? ? nil : HttpClient::Preconditions.assert_class('context', x, String))
  }.delete_if { |k, v| v.nil? }
  (x = checkout_token_form; x.is_a?(::Io::Flow::V0::Models::CheckoutTokenForm) ? x : ::Io::Flow::V0::Models::CheckoutTokenForm.from_json(x))
  r = @client.request("/#{CGI.escape(organization)}/checkout/tokens").with_query(query).with_json(checkout_token_form.to_json).post
  ::Io::Flow::V0::Models::CheckoutToken.new(r)
end