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.
3139 3140 3141 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3139 def initialize(client) @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client) end |
Instance Method Details
#delete_by_key(organization, key) ⇒ Object
3183 3184 3185 3186 3187 3188 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3183 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
3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3143 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
3168 3169 3170 3171 3172 3173 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3168 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
3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3190 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
3161 3162 3163 3164 3165 3166 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3161 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
3175 3176 3177 3178 3179 3180 3181 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3175 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 |