Class: Io::Flow::V0::Models::ItemFormOverlayForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ItemFormOverlayForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#categories ⇒ Object
readonly
Returns the value of attribute categories.
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#dimensions ⇒ Object
readonly
Returns the value of attribute dimensions.
-
#images ⇒ Object
readonly
Returns the value of attribute images.
-
#number ⇒ Object
readonly
Returns the value of attribute number.
-
#position ⇒ Object
readonly
Returns the value of attribute position.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ItemFormOverlayForm
constructor
A new instance of ItemFormOverlayForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ItemFormOverlayForm
Returns a new instance of ItemFormOverlayForm.
36355 36356 36357 36358 36359 36360 36361 36362 36363 36364 36365 36366 36367 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36355 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:number], 'ItemFormOverlayForm') @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String) @price = (x = opts.delete(:price); x.nil? ? nil : HttpClient::Preconditions.assert_class('price', x, Numeric)) @currency = (x = opts.delete(:currency); x.nil? ? nil : HttpClient::Preconditions.assert_class('currency', x, String)) @position = (x = opts.delete(:position); x.nil? ? nil : HttpClient::Preconditions.assert_class('position', x, Integer)) @categories = (x = opts.delete(:categories); x.nil? ? nil : HttpClient::Preconditions.assert_class('categories', x, Array).map { |v| HttpClient::Preconditions.assert_class('categories', v, String) }) @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String)) @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 }) @dimensions = (x = opts.delete(:dimensions); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Dimensions) ? x : ::Io::Flow::V0::Models::Dimensions.new(x))) @images = (x = opts.delete(:images); x.nil? ? nil : HttpClient::Preconditions.assert_class('images', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ImageForm) ? x : ::Io::Flow::V0::Models::ImageForm.new(x)) }) end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def attributes @attributes end |
#categories ⇒ Object (readonly)
Returns the value of attribute categories.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def categories @categories end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def currency @currency end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def description @description end |
#dimensions ⇒ Object (readonly)
Returns the value of attribute dimensions.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def dimensions @dimensions end |
#images ⇒ Object (readonly)
Returns the value of attribute images.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def images @images end |
#number ⇒ Object (readonly)
Returns the value of attribute number.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def number @number end |
#position ⇒ Object (readonly)
Returns the value of attribute position.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def position @position end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
36353 36354 36355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36353 def price @price end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
36373 36374 36375 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36373 def copy(incoming={}) ItemFormOverlayForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
36377 36378 36379 36380 36381 36382 36383 36384 36385 36386 36387 36388 36389 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36377 def to_hash { :number => number, :price => price, :currency => currency, :position => position, :categories => categories.nil? ? nil : categories, :description => description, :attributes => attributes.nil? ? nil : attributes, :dimensions => dimensions.nil? ? nil : dimensions.to_hash, :images => images.nil? ? nil : images.map { |o| o.to_hash } } end |
#to_json ⇒ Object
36369 36370 36371 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36369 def to_json JSON.dump(to_hash) end |