Class: CheckoutSdk::Payments::TokenDestination
- Inherits:
-
Destination
- Object
- Destination
- CheckoutSdk::Payments::TokenDestination
- Defined in:
- lib/checkout_sdk/payments/destination/token_destination.rb
Instance Attribute Summary collapse
Attributes inherited from Destination
Instance Method Summary collapse
-
#initialize ⇒ TokenDestination
constructor
A new instance of TokenDestination.
Constructor Details
#initialize ⇒ TokenDestination
Returns a new instance of TokenDestination.
13 14 15 |
# File 'lib/checkout_sdk/payments/destination/token_destination.rb', line 13 def initialize super CheckoutSdk::Payments::DestinationType::TOKEN end |
Instance Attribute Details
#account_holder ⇒ CheckoutSdk::Common::AccountHolder
9 10 11 12 13 14 15 16 |
# File 'lib/checkout_sdk/payments/destination/token_destination.rb', line 9 class TokenDestination < Destination attr_accessor :token, :account_holder def initialize super CheckoutSdk::Payments::DestinationType::TOKEN end end |
#token ⇒ String
9 10 11 12 13 14 15 16 |
# File 'lib/checkout_sdk/payments/destination/token_destination.rb', line 9 class TokenDestination < Destination attr_accessor :token, :account_holder def initialize super CheckoutSdk::Payments::DestinationType::TOKEN end end |