Class: Io::Flow::V0::Models::PaymentProcessorAccount
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PaymentProcessorAccount
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Information about an account with a payment processor
Instance Attribute Summary collapse
-
#identifier ⇒ Object
readonly
Returns the value of attribute identifier.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
-
#parent_account ⇒ Object
readonly
Returns the value of attribute parent_account.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PaymentProcessorAccount
constructor
A new instance of PaymentProcessorAccount.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PaymentProcessorAccount
Returns a new instance of PaymentProcessorAccount.
58364 58365 58366 58367 58368 58369 58370 58371 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58364 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:organization, :key, :identifier], 'PaymentProcessorAccount') @organization = HttpClient::Preconditions.assert_class('organization', opts.delete(:organization), String) @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String) @identifier = (x = opts.delete(:identifier); x.is_a?(::Io::Flow::V0::Models::PaymentProcessorIdentifier) ? x : ::Io::Flow::V0::Models::PaymentProcessorIdentifier.new(x)) @parent_account = (x = opts.delete(:parent_account); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PaymentProcessorAccountReference) ? x : ::Io::Flow::V0::Models::PaymentProcessorAccountReference.new(x))) end |
Instance Attribute Details
#identifier ⇒ Object (readonly)
Returns the value of attribute identifier.
58362 58363 58364 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58362 def identifier @identifier end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
58362 58363 58364 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58362 def key @key end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
58362 58363 58364 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58362 def organization @organization end |
#parent_account ⇒ Object (readonly)
Returns the value of attribute parent_account.
58362 58363 58364 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58362 def parent_account @parent_account end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
58377 58378 58379 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58377 def copy(incoming={}) PaymentProcessorAccount.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
58381 58382 58383 58384 58385 58386 58387 58388 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58381 def to_hash { :organization => organization, :key => key, :identifier => identifier.to_hash, :parent_account => parent_account.nil? ? nil : parent_account.to_hash } end |
#to_json ⇒ Object
58373 58374 58375 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58373 def to_json JSON.dump(to_hash) end |