Class: CheckoutSdk::Payments::Destination
- Inherits:
-
Object
- Object
- CheckoutSdk::Payments::Destination
- Defined in:
- lib/checkout_sdk/payments/destination/destination.rb
Direct Known Subclasses
BankAccountDestination, CardDestination, IdDestination, TokenDestination
Instance Attribute Summary collapse
Instance Attribute Details
#type ⇒ String
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/checkout_sdk/payments/destination/destination.rb', line 7 class Destination attr_reader :type protected # @abstract # @param [String] type {DestinationType} def initialize(type) @type = type end end |