Class: Io::Flow::V0::Models::RefundOrderSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

For merchant of record authorizations, we provide a summary of refund information primarily to support customer service workflow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ RefundOrderSummary

Returns a new instance of RefundOrderSummary.



42119
42120
42121
42122
42123
42124
42125
42126
42127
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42119

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:order_number, :currency, :captured, :refunded, :amounts], 'RefundOrderSummary')
  @order_number = HttpClient::Preconditions.assert_class('order_number', opts.delete(:order_number), String)
  @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String)
  @captured = HttpClient::Preconditions.assert_class('captured', HttpClient::Helper.to_big_decimal(opts.delete(:captured)), BigDecimal)
  @refunded = HttpClient::Preconditions.assert_class('refunded', HttpClient::Helper.to_big_decimal(opts.delete(:refunded)), BigDecimal)
  @amounts = (x = opts.delete(:amounts); x.is_a?(::Io::Flow::V0::Models::RefundOrderSummaryAmounts) ? x : ::Io::Flow::V0::Models::RefundOrderSummaryAmounts.new(x))
end

Instance Attribute Details

#amountsObject (readonly)

Returns the value of attribute amounts.



42117
42118
42119
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42117

def amounts
  @amounts
end

#capturedObject (readonly)

Returns the value of attribute captured.



42117
42118
42119
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42117

def captured
  @captured
end

#currencyObject (readonly)

Returns the value of attribute currency.



42117
42118
42119
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42117

def currency
  @currency
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



42117
42118
42119
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42117

def order_number
  @order_number
end

#refundedObject (readonly)

Returns the value of attribute refunded.



42117
42118
42119
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42117

def refunded
  @refunded
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



42133
42134
42135
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42133

def copy(incoming={})
  RefundOrderSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



42137
42138
42139
42140
42141
42142
42143
42144
42145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42137

def to_hash
  {
    :order_number => order_number,
    :currency => currency,
    :captured => captured.to_f.to_s,
    :refunded => refunded.to_f.to_s,
    :amounts => amounts.to_hash
  }
end

#to_jsonObject



42129
42130
42131
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42129

def to_json
  JSON.dump(to_hash)
end