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
30015 30016 30017 30018 30019 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30015 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.
30013 30014 30015 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30013 def refund @refund end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
30025 30026 30027 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30025 def copy(incoming={}) EmailPaymentSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
30029 30030 30031 30032 30033 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30029 def to_hash { :refund => refund.to_hash } end |
#to_json ⇒ Object
30021 30022 30023 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30021 def to_json JSON.dump(to_hash) end |