Class: Io::Flow::V0::Models::Fulfillment
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Fulfillment
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Used to track and manage the fulfillment of an order.
Instance Attribute Summary collapse
-
#center ⇒ Object
readonly
Returns the value of attribute center.
-
#items ⇒ Object
readonly
Returns the value of attribute items.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#number ⇒ Object
readonly
Returns the value of attribute number.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Fulfillment
constructor
A new instance of Fulfillment.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Fulfillment
Returns a new instance of Fulfillment.
38891 38892 38893 38894 38895 38896 38897 38898 38899 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38891 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:organization, :key, :number, :items], 'Fulfillment') @organization = HttpClient::Preconditions.assert_class('organization', opts.delete(:organization), String) @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String) @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String) @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::FulfillmentItem) ? x : ::Io::Flow::V0::Models::FulfillmentItem.new(x)) } @center = (x = opts.delete(:center); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::CenterSummary) ? x : ::Io::Flow::V0::Models::CenterSummary.new(x))) end |
Instance Attribute Details
#center ⇒ Object (readonly)
Returns the value of attribute center.
38889 38890 38891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38889 def center @center end |
#items ⇒ Object (readonly)
Returns the value of attribute items.
38889 38890 38891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38889 def items @items end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
38889 38890 38891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38889 def key @key end |
#number ⇒ Object (readonly)
Returns the value of attribute number.
38889 38890 38891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38889 def number @number end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
38889 38890 38891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38889 def organization @organization end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
38905 38906 38907 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38905 def copy(incoming={}) Fulfillment.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
38909 38910 38911 38912 38913 38914 38915 38916 38917 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38909 def to_hash { :organization => organization, :key => key, :number => number, :items => items.map { |o| o.to_hash }, :center => center.nil? ? nil : center.to_hash } end |
#to_json ⇒ Object
38901 38902 38903 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38901 def to_json JSON.dump(to_hash) end |