Class: Io::Flow::V0::Models::PaymentProcessor
- Inherits:
-
ExpandablePaymentProcessor
- Object
- ExpandablePaymentProcessor
- Io::Flow::V0::Models::PaymentProcessor
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Information about which payment processor performed the transaction and how it can be tracked in their system
Instance Attribute Summary collapse
-
#account ⇒ Object
readonly
Returns the value of attribute account.
-
#operation_identifier ⇒ Object
readonly
Returns the value of attribute operation_identifier.
-
#processor ⇒ Object
readonly
Returns the value of attribute processor.
Attributes inherited from ExpandablePaymentProcessor
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PaymentProcessor
constructor
A new instance of PaymentProcessor.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from ExpandablePaymentProcessor
Constructor Details
#initialize(incoming = {}) ⇒ PaymentProcessor
Returns a new instance of PaymentProcessor.
58332 58333 58334 58335 58336 58337 58338 58339 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58332 def initialize(incoming={}) super(:discriminator => ExpandablePaymentProcessor::Types::PAYMENT_PROCESSOR) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:processor], 'PaymentProcessor') @processor = HttpClient::Preconditions.assert_class('processor', opts.delete(:processor), String) @operation_identifier = (x = opts.delete(:operation_identifier); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PaymentProcessorIdentifier) ? x : ::Io::Flow::V0::Models::PaymentProcessorIdentifier.new(x))) @account = (x = opts.delete(:account); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PaymentProcessorAccount) ? x : ::Io::Flow::V0::Models::PaymentProcessorAccount.new(x))) end |
Instance Attribute Details
#account ⇒ Object (readonly)
Returns the value of attribute account.
58330 58331 58332 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58330 def account @account end |
#operation_identifier ⇒ Object (readonly)
Returns the value of attribute operation_identifier.
58330 58331 58332 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58330 def operation_identifier @operation_identifier end |
#processor ⇒ Object (readonly)
Returns the value of attribute processor.
58330 58331 58332 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58330 def processor @processor end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
58345 58346 58347 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58345 def copy(incoming={}) PaymentProcessor.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
58349 58350 58351 58352 58353 58354 58355 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58349 def subtype_to_hash { :processor => processor, :operation_identifier => operation_identifier.nil? ? nil : operation_identifier.to_hash, :account => account.nil? ? nil : account.to_hash } end |
#to_json ⇒ Object
58341 58342 58343 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58341 def to_json JSON.dump(to_hash) end |