Class: Io::Flow::V0::Models::ItemMarginUpserted

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

Instance Attribute Summary collapse

Attributes inherited from Event

#discriminator

Instance Method Summary collapse

Methods inherited from Event

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ ItemMarginUpserted

Returns a new instance of ItemMarginUpserted.



17060
17061
17062
17063
17064
17065
17066
17067
17068
17069
17070
17071
17072
17073
17074
17075
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17060

def initialize(incoming={})
  super(:discriminator => Event::Types::ITEM_MARGIN_UPSERTED)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :item_margin_id, :organization_id, :experience_key, :name, :q, :fixed, :percent, :position], 'ItemMarginUpserted')
  @event_id = HttpClient::Preconditions.assert_class('event_id', opts.delete(:event_id), String)
  @timestamp = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime)
  @item_margin_id = HttpClient::Preconditions.assert_class('item_margin_id', opts.delete(:item_margin_id), String)
  @organization_id = HttpClient::Preconditions.assert_class('organization_id', opts.delete(:organization_id), String)
  @experience_key = HttpClient::Preconditions.assert_class('experience_key', opts.delete(:experience_key), String)
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @q = HttpClient::Preconditions.assert_class('q', opts.delete(:q), String)
  @fixed = HttpClient::Preconditions.assert_class('fixed', HttpClient::Helper.to_big_decimal(opts.delete(:fixed)), BigDecimal)
  @percent = HttpClient::Preconditions.assert_class('percent', HttpClient::Helper.to_big_decimal(opts.delete(:percent)), BigDecimal)
  @position = HttpClient::Preconditions.assert_class('position', opts.delete(:position), Integer)
  @key = (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, String))
end

Instance Attribute Details

#event_idObject (readonly)

Returns the value of attribute event_id.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def event_id
  @event_id
end

#experience_keyObject (readonly)

Returns the value of attribute experience_key.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def experience_key
  @experience_key
end

#fixedObject (readonly)

Returns the value of attribute fixed.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def fixed
  @fixed
end

#item_margin_idObject (readonly)

Returns the value of attribute item_margin_id.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def item_margin_id
  @item_margin_id
end

#keyObject (readonly)

Returns the value of attribute key.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def key
  @key
end

#nameObject (readonly)

Returns the value of attribute name.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def name
  @name
end

#organization_idObject (readonly)

Returns the value of attribute organization_id.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def organization_id
  @organization_id
end

#percentObject (readonly)

Returns the value of attribute percent.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def percent
  @percent
end

#positionObject (readonly)

Returns the value of attribute position.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def position
  @position
end

#qObject (readonly)

Returns the value of attribute q.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def q
  @q
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



17058
17059
17060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17058

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



17081
17082
17083
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17081

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

#subtype_to_hashObject



17085
17086
17087
17088
17089
17090
17091
17092
17093
17094
17095
17096
17097
17098
17099
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17085

def subtype_to_hash
  {
    :event_id => event_id,
    :timestamp => timestamp,
    :item_margin_id => item_margin_id,
    :organization_id => organization_id,
    :experience_key => experience_key,
    :name => name,
    :q => q,
    :fixed => fixed,
    :percent => percent,
    :position => position,
    :key => key
  }
end

#to_jsonObject



17077
17078
17079
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17077

def to_json
  JSON.dump(to_hash)
end