Class: Io::Flow::V0::Models::PriceDetailComponent
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PriceDetailComponent
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PriceDetailComponent
constructor
A new instance of PriceDetailComponent.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PriceDetailComponent
Returns a new instance of PriceDetailComponent.
60342 60343 60344 60345 60346 60347 60348 60349 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60342 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:key, :amount, :label], 'PriceDetailComponent') @key = (x = opts.delete(:key); x.is_a?(::Io::Flow::V0::Models::PriceDetailComponentKey) ? x : ::Io::Flow::V0::Models::PriceDetailComponentKey.apply(x)) @amount = HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(opts.delete(:amount)), BigDecimal) @label = HttpClient::Preconditions.assert_class('label', opts.delete(:label), String) @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String)) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
60340 60341 60342 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60340 def amount @amount end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
60340 60341 60342 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60340 def key @key end |
#label ⇒ Object (readonly)
Returns the value of attribute label.
60340 60341 60342 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60340 def label @label end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
60340 60341 60342 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60340 def name @name end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
60355 60356 60357 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60355 def copy(incoming={}) PriceDetailComponent.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
60359 60360 60361 60362 60363 60364 60365 60366 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60359 def to_hash { :key => key.value, :amount => amount.to_f.to_s, :label => label, :name => name } end |
#to_json ⇒ Object
60351 60352 60353 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60351 def to_json JSON.dump(to_hash) end |