Class: Io::Flow::V0::Models::PaymentCaptureForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PaymentCaptureForm
- 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.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PaymentCaptureForm
constructor
A new instance of PaymentCaptureForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PaymentCaptureForm
Returns a new instance of PaymentCaptureForm.
50164 50165 50166 50167 50168 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50164 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) @amount = (x = opts.delete(:amount); x.nil? ? nil : HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(x), BigDecimal)) @currency = (x = opts.delete(:currency); x.nil? ? nil : HttpClient::Preconditions.assert_class('currency', x, String)) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
50162 50163 50164 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50162 def amount @amount end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
50162 50163 50164 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50162 def currency @currency end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
50174 50175 50176 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50174 def copy(incoming={}) PaymentCaptureForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
50178 50179 50180 50181 50182 50183 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50178 def to_hash { :amount => amount.to_f.to_s, :currency => currency } end |
#to_json ⇒ Object
50170 50171 50172 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50170 def to_json JSON.dump(to_hash) end |