Class: Io::Flow::V0::Models::ItemFormOverlayForm

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ItemFormOverlayForm

Returns a new instance of ItemFormOverlayForm.



21853
21854
21855
21856
21857
21858
21859
21860
21861
21862
21863
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21853

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)
  @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

#attributesObject (readonly)

Returns the value of attribute attributes.



21851
21852
21853
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21851

def attributes
  @attributes
end

#categoriesObject (readonly)

Returns the value of attribute categories.



21851
21852
21853
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21851

def categories
  @categories
end

#descriptionObject (readonly)

Returns the value of attribute description.



21851
21852
21853
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21851

def description
  @description
end

#dimensionsObject (readonly)

Returns the value of attribute dimensions.



21851
21852
21853
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21851

def dimensions
  @dimensions
end

#imagesObject (readonly)

Returns the value of attribute images.



21851
21852
21853
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21851

def images
  @images
end

#numberObject (readonly)

Returns the value of attribute number.



21851
21852
21853
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21851

def number
  @number
end

#positionObject (readonly)

Returns the value of attribute position.



21851
21852
21853
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21851

def position
  @position
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



21869
21870
21871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21869

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

#to_hashObject



21873
21874
21875
21876
21877
21878
21879
21880
21881
21882
21883
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21873

def to_hash
  {
    :number => number,
    :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_jsonObject



21865
21866
21867
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21865

def to_json
  JSON.dump(to_hash)
end