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.
14286 14287 14288 14289 14290 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14286 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.
14284 14285 14286 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14284 def discriminator @discriminator end |
Class Method Details
.from_json(hash) ⇒ Object
14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14300 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
14292 14293 14294 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14292 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
14296 14297 14298 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14296 def to_hash subtype_to_hash.merge(:discriminator => @discriminator) end |