Class: Io::Flow::V0::Models::ShopifyCartAddMultipleForm

Inherits:
ShopifyCartAddForm show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Attributes inherited from ShopifyCartAddForm

#discriminator

Instance Method Summary collapse

Methods inherited from ShopifyCartAddForm

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ ShopifyCartAddMultipleForm

Returns a new instance of ShopifyCartAddMultipleForm.



62217
62218
62219
62220
62221
62222
62223
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62217

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

#attributesObject (readonly)

Returns the value of attribute attributes.



62215
62216
62217
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62215

def attributes
  @attributes
end

#itemsObject (readonly)

Returns the value of attribute items.



62215
62216
62217
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62215

def items
  @items
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



62229
62230
62231
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62229

def copy(incoming={})
  ShopifyCartAddMultipleForm.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



62233
62234
62235
62236
62237
62238
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62233

def subtype_to_hash
  {
    :items => items.map { |o| o.to_hash },
    :attributes => attributes.nil? ? nil : attributes
  }
end

#to_jsonObject



62225
62226
62227
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62225

def to_json
  JSON.dump(to_hash)
end