Class: Io::Flow::V0::Clients::Payments
- Inherits:
-
Object
- Object
- Io::Flow::V0::Clients::Payments
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Method Summary collapse
-
#delete_by_id(organization, id) ⇒ Object
Deletes the specified payment.
- #get(organization, incoming = {}) ⇒ Object
-
#get_by_id(organization, id) ⇒ Object
Returns information about a specific payment.
-
#get_versions(organization, incoming = {}) ⇒ Object
Provides visibility into recent changes of each object, including deletion.
-
#initialize(client) ⇒ Payments
constructor
A new instance of Payments.
-
#post(organization, payment_form) ⇒ Object
Create a new payment.
Constructor Details
#initialize(client) ⇒ Payments
Returns a new instance of Payments.
2595 2596 2597 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 2595 def initialize(client) @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client) end |
Instance Method Details
#delete_by_id(organization, id) ⇒ Object
Deletes the specified payment
2631 2632 2633 2634 2635 2636 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 2631 def delete_by_id(organization, id) HttpClient::Preconditions.assert_class('organization', organization, String) HttpClient::Preconditions.assert_class('id', id, String) r = @client.request("/#{CGI.escape(organization)}/payments/#{CGI.escape(id)}").delete nil end |
#get(organization, incoming = {}) ⇒ Object
2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 2599 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) }), :payment_method => (x = opts.delete(:payment_method); x.nil? ? nil : HttpClient::Preconditions.assert_class('payment_method', 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)}/payments").with_query(query).get r.map { |x| ::Io::Flow::V0::Models::Payment.from_json(x) } end |
#get_by_id(organization, id) ⇒ Object
Returns information about a specific payment.
2623 2624 2625 2626 2627 2628 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 2623 def get_by_id(organization, id) HttpClient::Preconditions.assert_class('organization', organization, String) HttpClient::Preconditions.assert_class('id', id, String) r = @client.request("/#{CGI.escape(organization)}/payments/#{CGI.escape(id)}").get ::Io::Flow::V0::Models::Payment.from_json(r) end |
#get_versions(organization, incoming = {}) ⇒ Object
Provides visibility into recent changes of each object, including deletion
2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 2639 def get_versions(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, Integer) }), :payment_id => (x = opts.delete(:payment_id); x.nil? ? nil : HttpClient::Preconditions.assert_class('payment_id', x, Array).map { |v| HttpClient::Preconditions.assert_class('payment_id', v, 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? ? "journal_timestamp" : x), String) }.delete_if { |k, v| v.nil? } r = @client.request("/#{CGI.escape(organization)}/payments/versions").with_query(query).get r.map { |x| ::Io::Flow::V0::Models::PaymentVersion.new(x) } end |
#post(organization, payment_form) ⇒ Object
Create a new payment. Note that when using JSONP to submit a payment, you do not need to authenticate.
2615 2616 2617 2618 2619 2620 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 2615 def post(organization, payment_form) HttpClient::Preconditions.assert_class('organization', organization, String) (x = payment_form; x.is_a?(::Io::Flow::V0::Models::PaymentForm) ? x : ::Io::Flow::V0::Models::PaymentForm.from_json(x)) r = @client.request("/#{CGI.escape(organization)}/payments").with_json(payment_form.to_json).post ::Io::Flow::V0::Models::Payment.from_json(r) end |