Class: Io::Flow::V0::Models::OrderQuotePriceEstimated
- Inherits:
-
OrderQuotePrice
- Object
- OrderQuotePrice
- Io::Flow::V0::Models::OrderQuotePriceEstimated
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
Attributes inherited from OrderQuotePrice
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OrderQuotePriceEstimated
constructor
A new instance of OrderQuotePriceEstimated.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from OrderQuotePrice
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
#amount ⇒ Object (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 |
#currency ⇒ Object (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 |
#label ⇒ Object (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_hash ⇒ Object
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_json ⇒ Object
47251 47252 47253 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47251 def to_json JSON.dump(to_hash) end |