Class: Io::Flow::V0::Models::PaymentSource
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PaymentSource
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents a source of payment that can be saved and used in the future.
Direct Known Subclasses
Defined Under Namespace
Modules: Types
Instance Attribute Summary collapse
-
#discriminator ⇒ Object
readonly
Returns the value of attribute discriminator.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(incoming = {}) ⇒ PaymentSource
constructor
A new instance of PaymentSource.
- #subtype_to_hash ⇒ Object
- #to_hash ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PaymentSource
Returns a new instance of PaymentSource.
11114 11115 11116 11117 11118 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11114 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:discriminator], 'PaymentSource') @discriminator = HttpClient::Preconditions.assert_class('discriminator', opts.delete(:discriminator), String) end |
Instance Attribute Details
#discriminator ⇒ Object (readonly)
Returns the value of attribute discriminator.
11112 11113 11114 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11112 def discriminator @discriminator end |
Class Method Details
.from_json(hash) ⇒ Object
11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11128 def PaymentSource.from_json(hash) HttpClient::Preconditions.assert_class('hash', hash, Hash) discriminator = HttpClient::Helper.symbolize_keys(hash)[:discriminator].to_s.strip if discriminator.empty? raise "Union type[payment_source] requires a field named 'discriminator'" end case discriminator when Types::CARD_PAYMENT_SOURCE; CardPaymentSource.new(hash) else PaymentSourceUndefinedType.new(:discriminator => discriminator) end end |
Instance Method Details
#subtype_to_hash ⇒ Object
11120 11121 11122 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11120 def subtype_to_hash raise 'Cannot serialize an instance of payment_source directly - must use one of the specific types: card_payment_source' end |
#to_hash ⇒ Object
11124 11125 11126 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11124 def to_hash subtype_to_hash.merge(:discriminator => @discriminator) end |