Class: Io::Flow::V0::Models::CreditPaymentPutForm

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ CreditPaymentPutForm

Returns a new instance of CreditPaymentPutForm.



15201
15202
15203
15204
15205
15206
15207
15208
15209
15210
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15201

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:order_number, :description, :amount, :currency, :max], 'CreditPaymentPutForm')
  @order_number = HttpClient::Preconditions.assert_class('order_number', opts.delete(:order_number), String)
  @description = HttpClient::Preconditions.assert_class('description', opts.delete(:description), String)
  @amount = HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(opts.delete(:amount)), BigDecimal)
  @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String)
  @max = HttpClient::Preconditions.assert_class('max', HttpClient::Helper.to_big_decimal(opts.delete(:max)), BigDecimal)
  @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.



15199
15200
15201
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15199

def amount
  @amount
end

#attributesObject (readonly)

Returns the value of attribute attributes.



15199
15200
15201
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15199

def attributes
  @attributes
end

#currencyObject (readonly)

Returns the value of attribute currency.



15199
15200
15201
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15199

def currency
  @currency
end

#descriptionObject (readonly)

Returns the value of attribute description.



15199
15200
15201
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15199

def description
  @description
end

#maxObject (readonly)

Returns the value of attribute max.



15199
15200
15201
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15199

def max
  @max
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



15199
15200
15201
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15199

def order_number
  @order_number
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



15216
15217
15218
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15216

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

#to_hashObject



15220
15221
15222
15223
15224
15225
15226
15227
15228
15229
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15220

def to_hash
  {
    :order_number => order_number,
    :description => description,
    :amount => amount,
    :currency => currency,
    :max => max,
    :attributes => attributes.nil? ? nil : attributes
  }
end

#to_jsonObject



15212
15213
15214
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15212

def to_json
  JSON.dump(to_hash)
end