class Io::Flow::V0::Models::PaymentMethodStoredDetailsCard
Attributes
type[R]
Public Class Methods
from_json(hash)
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 14036 def PaymentMethodStoredDetailsCard.from_json(hash) HttpClient::Preconditions.assert_class('hash', hash, Hash) discriminator = HttpClient::Helper.symbolize_keys(hash)[:type].to_s.strip if discriminator.empty? raise "Union type[payment_method_stored_details_card] requires a field named 'type'" end case discriminator when Types::PAYMENT_METHOD_STORED_DETAILS_CARD_INITIAL; PaymentMethodStoredDetailsCardInitial.new(hash) when Types::PAYMENT_METHOD_STORED_DETAILS_CARD_SUBSEQUENT; PaymentMethodStoredDetailsCardSubsequent.new(hash) else PaymentMethodStoredDetailsCardUndefinedType.new(:type => discriminator) end end
new(incoming={})
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 14022 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:type], 'PaymentMethodStoredDetailsCard') @type = HttpClient::Preconditions.assert_class('type', opts.delete(:type), String) end
Public Instance Methods
subtype_to_hash()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 14028 def subtype_to_hash raise 'Cannot serialize an instance of payment_method_stored_details_card directly - must use one of the specific types: payment_method_stored_details_card_initial, payment_method_stored_details_card_subsequent' end
to_hash()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 14032 def to_hash subtype_to_hash.merge(:type => @type) end