Class: CheckoutSdk::Previous::Payments::IdDestination
- Inherits:
-
Destination
- Object
- Destination
- CheckoutSdk::Previous::Payments::IdDestination
- Defined in:
- lib/checkout_sdk/payments/previous/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.
17 18 19 |
# File 'lib/checkout_sdk/payments/previous/destination/id_destination.rb', line 17 def initialize super CheckoutSdk::Payments::DestinationType::ID end |
Instance Attribute Details
#first_name ⇒ String
12 13 14 15 16 17 18 19 20 |
# File 'lib/checkout_sdk/payments/previous/destination/id_destination.rb', line 12 class IdDestination < Destination attr_accessor :id, :first_name, :last_name def initialize super CheckoutSdk::Payments::DestinationType::ID end end |
#id ⇒ String
12 13 14 15 16 17 18 19 20 |
# File 'lib/checkout_sdk/payments/previous/destination/id_destination.rb', line 12 class IdDestination < Destination attr_accessor :id, :first_name, :last_name def initialize super CheckoutSdk::Payments::DestinationType::ID end end |
#last_name ⇒ String
12 13 14 15 16 17 18 19 20 |
# File 'lib/checkout_sdk/payments/previous/destination/id_destination.rb', line 12 class IdDestination < Destination attr_accessor :id, :first_name, :last_name def initialize super CheckoutSdk::Payments::DestinationType::ID end end |