Class: Io::Flow::V0::Clients::Returns
- Inherits:
-
Object
- Object
- Io::Flow::V0::Clients::Returns
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Method Summary collapse
- #delete_by_key(organization, key) ⇒ Object
- #get(organization, incoming = {}) ⇒ Object
- #get_by_key(organization, key) ⇒ Object
- #get_versions(organization, incoming = {}) ⇒ Object
-
#initialize(client) ⇒ Returns
constructor
A new instance of Returns.
- #post(organization, return_form) ⇒ Object
- #put_by_key(organization, key, return_form) ⇒ Object
Constructor Details
#initialize(client) ⇒ Returns
Returns a new instance of Returns.
3652 3653 3654 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3652 def initialize(client) @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client) end |
Instance Method Details
#delete_by_key(organization, key) ⇒ Object
3710 3711 3712 3713 3714 3715 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3710 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)}/returns/#{CGI.escape(key)}").delete nil end |
#get(organization, incoming = {}) ⇒ Object
3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3656 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, Array).map { |v| HttpClient::Preconditions.assert_class('key', v, String) }), :order_number => (x = opts.delete(:order_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('order_number', x, Array).map { |v| HttpClient::Preconditions.assert_class('order_number', v, String) }), :flow_tracking_number => (x = opts.delete(:flow_tracking_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('flow_tracking_number', x, Array).map { |v| HttpClient::Preconditions.assert_class('flow_tracking_number', v, String) }), :carrier_tracking_number => (x = opts.delete(:carrier_tracking_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('carrier_tracking_number', x, Array).map { |v| HttpClient::Preconditions.assert_class('carrier_tracking_number', v, String) }), :service => (x = opts.delete(:service); x.nil? ? nil : HttpClient::Preconditions.assert_class('service', x, Array).map { |v| HttpClient::Preconditions.assert_class('service', 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? ? "-created_at" : x), String) }.delete_if { |k, v| v.nil? } r = @client.request("/#{CGI.escape(organization)}/returns").with_query(query).get r.map { |x| ::Io::Flow::V0::Models::Return.new(x) } end |
#get_by_key(organization, key) ⇒ Object
3695 3696 3697 3698 3699 3700 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3695 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)}/returns/#{CGI.escape(key)}").get ::Io::Flow::V0::Models::Return.new(r) end |
#get_versions(organization, incoming = {}) ⇒ Object
3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3681 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, String) }), :key => (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, Array).map { |v| HttpClient::Preconditions.assert_class('key', 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)}/returns/versions").with_query(query).get r.map { |x| ::Io::Flow::V0::Models::ReturnVersion.new(x) } end |
#post(organization, return_form) ⇒ Object
3674 3675 3676 3677 3678 3679 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3674 def post(organization, return_form) HttpClient::Preconditions.assert_class('organization', organization, String) (x = return_form; x.is_a?(::Io::Flow::V0::Models::ReturnForm) ? x : ::Io::Flow::V0::Models::ReturnForm.new(x)) r = @client.request("/#{CGI.escape(organization)}/returns").with_json(return_form.to_json).post ::Io::Flow::V0::Models::Return.new(r) end |
#put_by_key(organization, key, return_form) ⇒ Object
3702 3703 3704 3705 3706 3707 3708 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3702 def put_by_key(organization, key, return_form) HttpClient::Preconditions.assert_class('organization', organization, String) HttpClient::Preconditions.assert_class('key', key, String) (x = return_form; x.is_a?(::Io::Flow::V0::Models::ReturnForm) ? x : ::Io::Flow::V0::Models::ReturnForm.new(x)) r = @client.request("/#{CGI.escape(organization)}/returns/#{CGI.escape(key)}").with_json(return_form.to_json).put ::Io::Flow::V0::Models::Return.new(r) end |