Class: Io::Flow::V0::Models::Attribute

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

Overview

An attribute can be configured to be used in different ways throughout Flow. A common example is to identify a meaningful attribute (e.g. brand) that can then be displayed throughout the Flow console.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Attribute

Returns a new instance of Attribute.



28437
28438
28439
28440
28441
28442
28443
28444
28445
28446
28447
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28437

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :key, :options], 'Attribute')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String)
  @options = (x = opts.delete(:options); x.is_a?(::Io::Flow::V0::Models::Options) ? x : ::Io::Flow::V0::Models::Options.new(x))
  @label = (x = opts.delete(:label); x.nil? ? nil : HttpClient::Preconditions.assert_class('label', x, String))
  @intent = (x = opts.delete(:intent); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::AttributeIntent) ? x : ::Io::Flow::V0::Models::AttributeIntent.apply(x)))
  @type = (x = opts.delete(:type); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::AttributeDataType) ? x : ::Io::Flow::V0::Models::AttributeDataType.apply(x)))
  @position = (x = opts.delete(:position); x.nil? ? nil : HttpClient::Preconditions.assert_class('position', x, Integer))
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



28435
28436
28437
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28435

def id
  @id
end

#intentObject (readonly)

Returns the value of attribute intent.



28435
28436
28437
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28435

def intent
  @intent
end

#keyObject (readonly)

Returns the value of attribute key.



28435
28436
28437
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28435

def key
  @key
end

#labelObject (readonly)

Returns the value of attribute label.



28435
28436
28437
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28435

def label
  @label
end

#optionsObject (readonly)

Returns the value of attribute options.



28435
28436
28437
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28435

def options
  @options
end

#positionObject (readonly)

Returns the value of attribute position.



28435
28436
28437
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28435

def position
  @position
end

#typeObject (readonly)

Returns the value of attribute type.



28435
28436
28437
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28435

def type
  @type
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



28453
28454
28455
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28453

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

#to_hashObject



28457
28458
28459
28460
28461
28462
28463
28464
28465
28466
28467
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28457

def to_hash
  {
    :id => id,
    :key => key,
    :options => options.to_hash,
    :label => label,
    :intent => intent.nil? ? nil : intent.value,
    :type => type.nil? ? nil : type.value,
    :position => position
  }
end

#to_jsonObject



28449
28450
28451
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28449

def to_json
  JSON.dump(to_hash)
end