Class: Io::Flow::V0::Models::AmountMarginForm

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

Instance Attribute Summary collapse

Attributes inherited from TierRuleOutcomeForm

#discriminator

Instance Method Summary collapse

Methods inherited from TierRuleOutcomeForm

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ AmountMarginForm

Returns a new instance of AmountMarginForm.



28291
28292
28293
28294
28295
28296
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28291

def initialize(incoming={})
  super(:discriminator => TierRuleOutcomeForm::Types::AMOUNT_MARGIN_FORM)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:margin], 'AmountMarginForm')
  @margin = (x = opts.delete(:margin); x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x))
end

Instance Attribute Details

#marginObject (readonly)

Returns the value of attribute margin.



28289
28290
28291
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28289

def margin
  @margin
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



28302
28303
28304
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28302

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

#subtype_to_hashObject



28306
28307
28308
28309
28310
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28306

def subtype_to_hash
  {
    :margin => margin.to_hash
  }
end

#to_jsonObject



28298
28299
28300
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28298

def to_json
  JSON.dump(to_hash)
end