Class: Io::Flow::V0::Models::PaymentSourceConfirmationAction
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PaymentSourceConfirmationAction
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents confirmation details & any additional confirmation actions required to execute the payment.
Instance Attribute Summary collapse
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PaymentSourceConfirmationAction
constructor
A new instance of PaymentSourceConfirmationAction.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PaymentSourceConfirmationAction
Returns a new instance of PaymentSourceConfirmationAction.
44267 44268 44269 44270 44271 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44267 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:type], 'PaymentSourceConfirmationAction') @type = (x = opts.delete(:type); x.is_a?(::Io::Flow::V0::Models::PaymentSourceConfirmationActionType) ? x : ::Io::Flow::V0::Models::PaymentSourceConfirmationActionType.apply(x)) end |
Instance Attribute Details
#type ⇒ Object (readonly)
Returns the value of attribute type.
44265 44266 44267 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44265 def type @type end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
44277 44278 44279 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44277 def copy(incoming={}) PaymentSourceConfirmationAction.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
44281 44282 44283 44284 44285 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44281 def to_hash { :type => type.value } end |
#to_json ⇒ Object
44273 44274 44275 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44273 def to_json JSON.dump(to_hash) end |