Class: Io::Flow::V0::Models::ShopifyCartAddSingleForm

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 = {}) ⇒ ShopifyCartAddSingleForm

Returns a new instance of ShopifyCartAddSingleForm.



62246
62247
62248
62249
62250
62251
62252
62253
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62246

def initialize(incoming={})
  super(:discriminator => ShopifyCartAddForm::Types::SHOPIFY_CART_ADD_SINGLE_FORM)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :quantity], 'ShopifyCartAddSingleForm')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), Integer)
  @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer)
  @properties = (x = opts.delete(:properties); x.nil? ? nil : HttpClient::Preconditions.assert_class('properties', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('properties', d[1], String); h })
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



62244
62245
62246
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62244

def id
  @id
end

#propertiesObject (readonly)

Returns the value of attribute properties.



62244
62245
62246
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62244

def properties
  @properties
end

#quantityObject (readonly)

Returns the value of attribute quantity.



62244
62245
62246
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62244

def quantity
  @quantity
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



62259
62260
62261
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62259

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

#subtype_to_hashObject



62263
62264
62265
62266
62267
62268
62269
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62263

def subtype_to_hash
  {
    :id => id,
    :quantity => quantity,
    :properties => properties.nil? ? nil : properties
  }
end

#to_jsonObject



62255
62256
62257
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62255

def to_json
  JSON.dump(to_hash)
end