Class: Io::Flow::V0::Models::RefundOrderSummaryAmounts
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::RefundOrderSummaryAmounts
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Detailed examples of amount to refund following common e-commerce use cases.
Instance Attribute Summary collapse
-
#balance ⇒ Object
readonly
Returns the value of attribute balance.
-
#balance_excluding_shipping ⇒ Object
readonly
Returns the value of attribute balance_excluding_shipping.
-
#shipping ⇒ Object
readonly
Returns the value of attribute shipping.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ RefundOrderSummaryAmounts
constructor
A new instance of RefundOrderSummaryAmounts.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ RefundOrderSummaryAmounts
47991 47992 47993 47994 47995 47996 47997 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47991 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:balance], 'RefundOrderSummaryAmounts') @balance = HttpClient::Preconditions.assert_class('balance', HttpClient::Helper.to_big_decimal(opts.delete(:balance)), BigDecimal) @balance_excluding_shipping = (x = opts.delete(:balance_excluding_shipping); x.nil? ? nil : HttpClient::Preconditions.assert_class('balance_excluding_shipping', HttpClient::Helper.to_big_decimal(x), BigDecimal)) @shipping = (x = opts.delete(:shipping); x.nil? ? nil : HttpClient::Preconditions.assert_class('shipping', HttpClient::Helper.to_big_decimal(x), BigDecimal)) end |
Instance Attribute Details
#balance ⇒ Object (readonly)
Returns the value of attribute balance.
47989 47990 47991 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47989 def balance @balance end |
#balance_excluding_shipping ⇒ Object (readonly)
Returns the value of attribute balance_excluding_shipping.
47989 47990 47991 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47989 def balance_excluding_shipping @balance_excluding_shipping end |
#shipping ⇒ Object (readonly)
Returns the value of attribute shipping.
47989 47990 47991 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47989 def shipping @shipping end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
48003 48004 48005 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48003 def copy(incoming={}) RefundOrderSummaryAmounts.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
48007 48008 48009 48010 48011 48012 48013 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48007 def to_hash { :balance => balance.to_f.to_s, :balance_excluding_shipping => balance_excluding_shipping.to_f.to_s, :shipping => shipping.to_f.to_s } end |
#to_json ⇒ Object
47999 48000 48001 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47999 def to_json JSON.dump(to_hash) end |