Class: Io::Flow::V0::Models::OrderQuotePriceEstimated

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

Instance Attribute Summary collapse

Attributes inherited from OrderQuotePrice

#discriminator

Instance Method Summary collapse

Methods inherited from OrderQuotePrice

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ OrderQuotePriceEstimated

Returns a new instance of OrderQuotePriceEstimated.



47242
47243
47244
47245
47246
47247
47248
47249
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47242

def initialize(incoming={})
  super(:discriminator => OrderQuotePrice::Types::ORDER_QUOTE_PRICE_ESTIMATED)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:amount, :currency, :label], 'OrderQuotePriceEstimated')
  @amount = HttpClient::Preconditions.assert_class('amount', opts.delete(:amount), Numeric)
  @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String)
  @label = HttpClient::Preconditions.assert_class('label', opts.delete(:label), String)
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



47240
47241
47242
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47240

def amount
  @amount
end

#currencyObject (readonly)

Returns the value of attribute currency.



47240
47241
47242
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47240

def currency
  @currency
end

#labelObject (readonly)

Returns the value of attribute label.



47240
47241
47242
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47240

def label
  @label
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



47255
47256
47257
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47255

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

#subtype_to_hashObject



47259
47260
47261
47262
47263
47264
47265
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47259

def subtype_to_hash
  {
    :amount => amount,
    :currency => currency,
    :label => label
  }
end

#to_jsonObject



47251
47252
47253
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47251

def to_json
  JSON.dump(to_hash)
end