Class: Io::Flow::V0::Clients::ConsumerInvoices

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

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ ConsumerInvoices



5614
5615
5616
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5614

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

Instance Method Details

#delete_by_key(organization, key) ⇒ Object



5691
5692
5693
5694
5695
5696
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5691

def delete_by_key(organization, key)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('key', key, String)
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices/#{CGI.escape(key)}").delete
  nil
end

#delete_credit_and_memos_by_invoice_key_and_key(organization, invoice_key, key) ⇒ Object



5668
5669
5670
5671
5672
5673
5674
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5668

def delete_credit_and_memos_by_invoice_key_and_key(organization, invoice_key, key)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('invoice_key', invoice_key, String)
  HttpClient::Preconditions.assert_class('key', key, String)
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices/#{CGI.escape(invoice_key)}/credit/memos/#{CGI.escape(key)}").delete
  nil
end

#get(organization, incoming = {}) ⇒ Object



5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5618

def get(organization, incoming={})
  HttpClient::Preconditions.assert_class('organization', organization, String)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  query = {
    :id => (x = opts.delete(:id); x.nil? ? nil : HttpClient::Preconditions.assert_class('id', x, Array).map { |v| HttpClient::Preconditions.assert_class('id', v, String) }),
    :key => (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, String)),
    :order_number => (x = opts.delete(:order_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('order_number', x, String)),
    :limit => HttpClient::Preconditions.assert_class('limit', (x = opts.delete(:limit); x.nil? ? 25 : x), Integer),
    :offset => HttpClient::Preconditions.assert_class('offset', (x = opts.delete(:offset); x.nil? ? 0 : x), Integer),
    :sort => HttpClient::Preconditions.assert_class('sort', (x = opts.delete(:sort); x.nil? ? "-created_at" : x), String)
  }.delete_if { |k, v| v.nil? }
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices").with_query(query).get
  r.map { |x| ::Io::Flow::V0::Models::ConsumerInvoice.new(x) }
end

#get_by_key(organization, key) ⇒ Object



5676
5677
5678
5679
5680
5681
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5676

def get_by_key(organization, key)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('key', key, String)
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices/#{CGI.escape(key)}").get
  ::Io::Flow::V0::Models::ConsumerInvoice.new(r)
end

#post_credit_and_memos_by_invoice_key(organization, invoice_key, credit_memo_form) ⇒ Object

Creates a credit memo against this invoice



5650
5651
5652
5653
5654
5655
5656
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5650

def post_credit_and_memos_by_invoice_key(organization, invoice_key, credit_memo_form)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('invoice_key', invoice_key, String)
  (x = credit_memo_form; x.is_a?(::Io::Flow::V0::Models::CreditMemoForm) ? x : ::Io::Flow::V0::Models::CreditMemoForm.new(x))
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices/#{CGI.escape(invoice_key)}/credit/memos").with_json(credit_memo_form.to_json).post
  ::Io::Flow::V0::Models::CreditMemo.new(r)
end

#post_exports(organization, invoice_export_form) ⇒ Object

Creates an export of the consumer/invoices



5634
5635
5636
5637
5638
5639
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5634

def post_exports(organization, invoice_export_form)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  (x = invoice_export_form; x.is_a?(::Io::Flow::V0::Models::InvoiceExportForm) ? x : ::Io::Flow::V0::Models::InvoiceExportForm.new(x))
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices/exports").with_json(invoice_export_form.to_json).post
  ::Io::Flow::V0::Models::InvoiceExport.new(r)
end

#put_by_key(organization, key, consumer_invoice_form) ⇒ Object



5683
5684
5685
5686
5687
5688
5689
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5683

def put_by_key(organization, key, consumer_invoice_form)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('key', key, String)
  (x = consumer_invoice_form; x.is_a?(::Io::Flow::V0::Models::ConsumerInvoiceForm) ? x : ::Io::Flow::V0::Models::ConsumerInvoiceForm.new(x))
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices/#{CGI.escape(key)}").with_json(consumer_invoice_form.to_json).put
  ::Io::Flow::V0::Models::ConsumerInvoice.new(r)
end

#put_credit_and_memos_by_invoice_key_and_key(organization, invoice_key, key, credit_memo_form) ⇒ Object

Upserts a credit memo against this invoice



5659
5660
5661
5662
5663
5664
5665
5666
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5659

def put_credit_and_memos_by_invoice_key_and_key(organization, invoice_key, key, credit_memo_form)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('invoice_key', invoice_key, String)
  HttpClient::Preconditions.assert_class('key', key, String)
  (x = credit_memo_form; x.is_a?(::Io::Flow::V0::Models::CreditMemoForm) ? x : ::Io::Flow::V0::Models::CreditMemoForm.new(x))
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices/#{CGI.escape(invoice_key)}/credit/memos/#{CGI.escape(key)}").with_json(credit_memo_form.to_json).put
  ::Io::Flow::V0::Models::CreditMemo.new(r)
end

#put_order_by_number(organization, number, consumer_invoice_form_by_order) ⇒ Object



5641
5642
5643
5644
5645
5646
5647
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5641

def put_order_by_number(organization, number, consumer_invoice_form_by_order)
  HttpClient::Preconditions.assert_class('organization', organization, String)
  HttpClient::Preconditions.assert_class('number', number, String)
  (x = consumer_invoice_form_by_order; x.is_a?(::Io::Flow::V0::Models::ConsumerInvoiceFormByOrder) ? x : ::Io::Flow::V0::Models::ConsumerInvoiceFormByOrder.new(x))
  r = @client.request("/#{CGI.escape(organization)}/consumer/invoices/order/#{CGI.escape(number)}").with_json(consumer_invoice_form_by_order.to_json).put
  r.map { |x| ::Io::Flow::V0::Models::ConsumerInvoice.new(x) }
end