Class: Io::Flow::V0::Models::EmailPaymentSummary
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::EmailPaymentSummary
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#refund ⇒ Object
readonly
Returns the value of attribute refund.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ EmailPaymentSummary
constructor
A new instance of EmailPaymentSummary.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ EmailPaymentSummary
Returns a new instance of EmailPaymentSummary.
29439 29440 29441 29442 29443 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29439 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:refund], 'EmailPaymentSummary') @refund = (x = opts.delete(:refund); x.is_a?(::Io::Flow::V0::Models::Refund) ? x : ::Io::Flow::V0::Models::Refund.new(x)) end |
Instance Attribute Details
#refund ⇒ Object (readonly)
Returns the value of attribute refund.
29437 29438 29439 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29437 def refund @refund end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
29449 29450 29451 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29449 def copy(incoming={}) EmailPaymentSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
29453 29454 29455 29456 29457 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29453 def to_hash { :refund => refund.to_hash } end |
#to_json ⇒ Object
29445 29446 29447 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29445 def to_json JSON.dump(to_hash) end |