Class: CheckoutSdk::Payments::ProviderTokenSource
- Inherits:
-
PaymentSource
- Object
- PaymentSource
- CheckoutSdk::Payments::ProviderTokenSource
- Defined in:
- lib/checkout_sdk/payments/source/provider_token_source.rb
Instance Attribute Summary collapse
Attributes inherited from PaymentSource
Instance Method Summary collapse
-
#initialize ⇒ ProviderTokenSource
constructor
A new instance of ProviderTokenSource.
Constructor Details
#initialize ⇒ ProviderTokenSource
Returns a new instance of ProviderTokenSource.
16 17 18 |
# File 'lib/checkout_sdk/payments/source/provider_token_source.rb', line 16 def initialize super CheckoutSdk::Common::PaymentSourceType::PROVIDER_TOKEN end |
Instance Attribute Details
#account_holder ⇒ CheckoutSdk::Common::AccountHolder
11 12 13 14 15 16 17 18 19 |
# File 'lib/checkout_sdk/payments/source/provider_token_source.rb', line 11 class ProviderTokenSource < PaymentSource attr_accessor :payment_method, :token, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::PROVIDER_TOKEN end end |
#payment_method ⇒ String
11 12 13 14 15 16 17 18 19 |
# File 'lib/checkout_sdk/payments/source/provider_token_source.rb', line 11 class ProviderTokenSource < PaymentSource attr_accessor :payment_method, :token, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::PROVIDER_TOKEN end end |
#token ⇒ String
11 12 13 14 15 16 17 18 19 |
# File 'lib/checkout_sdk/payments/source/provider_token_source.rb', line 11 class ProviderTokenSource < PaymentSource attr_accessor :payment_method, :token, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::PROVIDER_TOKEN end end |