Class: CheckoutSdk::Previous::Payments::CustomerSource
- Inherits:
-
PaymentSource
- Object
- PaymentSource
- CheckoutSdk::Previous::Payments::CustomerSource
- Defined in:
- lib/checkout_sdk/payments/previous/source/customer_source.rb
Instance Attribute Summary collapse
Attributes inherited from PaymentSource
Instance Method Summary collapse
-
#initialize ⇒ CustomerSource
constructor
A new instance of CustomerSource.
Constructor Details
#initialize ⇒ CustomerSource
Returns a new instance of CustomerSource.
11 12 13 |
# File 'lib/checkout_sdk/payments/previous/source/customer_source.rb', line 11 def initialize super CheckoutSdk::Common::PaymentSourceType::CUSTOMER end |
Instance Attribute Details
#id ⇒ String
8 9 10 11 12 13 14 |
# File 'lib/checkout_sdk/payments/previous/source/customer_source.rb', line 8 class CustomerSource < PaymentSource attr_accessor :id def initialize super CheckoutSdk::Common::PaymentSourceType::CUSTOMER end end |