Class: Io::Flow::V0::Models::RefundForm

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

Overview

Refund actually transfers funds. You can refund as many times as you’d like up until the total amount of captured funds has been refunded. Note when creating a refund you can specify either an order authorization id, a capture id, or an order number (or all of them as long as they match).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ RefundForm

Returns a new instance of RefundForm.



24109
24110
24111
24112
24113
24114
24115
24116
24117
24118
24119
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24109

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  @authorization_id = (x = opts.delete(:authorization_id); x.nil? ? nil : HttpClient::Preconditions.assert_class('authorization_id', x, String))
  @capture_id = (x = opts.delete(:capture_id); x.nil? ? nil : HttpClient::Preconditions.assert_class('capture_id', x, String))
  @order_number = (x = opts.delete(:order_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('order_number', x, String))
  @key = (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, String))
  @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))
  @rma_key = (x = opts.delete(:rma_key); x.nil? ? nil : HttpClient::Preconditions.assert_class('rma_key', x, String))
  @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h })
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



24107
24108
24109
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24107

def amount
  @amount
end

#attributesObject (readonly)

Returns the value of attribute attributes.



24107
24108
24109
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24107

def attributes
  @attributes
end

#authorization_idObject (readonly)

Returns the value of attribute authorization_id.



24107
24108
24109
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24107

def authorization_id
  @authorization_id
end

#capture_idObject (readonly)

Returns the value of attribute capture_id.



24107
24108
24109
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24107

def capture_id
  @capture_id
end

#currencyObject (readonly)

Returns the value of attribute currency.



24107
24108
24109
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24107

def currency
  @currency
end

#keyObject (readonly)

Returns the value of attribute key.



24107
24108
24109
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24107

def key
  @key
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



24107
24108
24109
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24107

def order_number
  @order_number
end

#rma_keyObject (readonly)

Returns the value of attribute rma_key.



24107
24108
24109
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24107

def rma_key
  @rma_key
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



24125
24126
24127
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24125

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

#to_hashObject



24129
24130
24131
24132
24133
24134
24135
24136
24137
24138
24139
24140
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24129

def to_hash
  {
    :authorization_id => authorization_id,
    :capture_id => capture_id,
    :order_number => order_number,
    :key => key,
    :amount => amount,
    :currency => currency,
    :rma_key => rma_key,
    :attributes => attributes.nil? ? nil : attributes
  }
end

#to_jsonObject



24121
24122
24123
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24121

def to_json
  JSON.dump(to_hash)
end