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