Class: Io::Flow::V0::Models::ShopifyCartAddMultipleForm
- Inherits:
-
ShopifyCartAddForm
- Object
- ShopifyCartAddForm
- Io::Flow::V0::Models::ShopifyCartAddMultipleForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#items ⇒ Object
readonly
Returns the value of attribute items.
Attributes inherited from ShopifyCartAddForm
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ShopifyCartAddMultipleForm
constructor
A new instance of ShopifyCartAddMultipleForm.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from ShopifyCartAddForm
Constructor Details
#initialize(incoming = {}) ⇒ ShopifyCartAddMultipleForm
Returns a new instance of ShopifyCartAddMultipleForm.
51219 51220 51221 51222 51223 51224 51225 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51219 def initialize(incoming={}) super(:discriminator => ShopifyCartAddForm::Types::SHOPIFY_CART_ADD_MULTIPLE_FORM) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:items], 'ShopifyCartAddMultipleForm') @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ShopifyCartAddSingleForm) ? x : ::Io::Flow::V0::Models::ShopifyCartAddSingleForm.new(x)) } @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h }) end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
51217 51218 51219 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51217 def attributes @attributes end |
#items ⇒ Object (readonly)
Returns the value of attribute items.
51217 51218 51219 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51217 def items @items end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
51231 51232 51233 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51231 def copy(incoming={}) ShopifyCartAddMultipleForm.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
51235 51236 51237 51238 51239 51240 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51235 def subtype_to_hash { :items => items.map { |o| o.to_hash }, :attributes => attributes.nil? ? nil : attributes } end |
#to_json ⇒ Object
51227 51228 51229 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51227 def to_json JSON.dump(to_hash) end |