Class: CheckoutSdk::Payments::IdSource
- Inherits:
-
PaymentSource
- Object
- PaymentSource
- CheckoutSdk::Payments::IdSource
- Defined in:
- lib/checkout_sdk/payments/source/id_source.rb
Instance Attribute Summary collapse
- #account_holder ⇒ CheckoutSdk::Common::AccountHolder
- #cvv ⇒ String
- #id ⇒ String
- #payment_method ⇒ String
- #store_for_future_use ⇒ TrueClass, FalseClass
- #stored ⇒ TrueClass, FalseClass
Attributes inherited from PaymentSource
Instance Method Summary collapse
-
#initialize ⇒ IdSource
constructor
A new instance of IdSource.
Constructor Details
#initialize ⇒ IdSource
Returns a new instance of IdSource.
25 26 27 |
# File 'lib/checkout_sdk/payments/source/id_source.rb', line 25 def initialize super CheckoutSdk::Common::PaymentSourceType::ID end |
Instance Attribute Details
#account_holder ⇒ CheckoutSdk::Common::AccountHolder
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/checkout_sdk/payments/source/id_source.rb', line 17 class IdSource < PaymentSource attr_accessor :id, :cvv, :payment_method, :stored, :store_for_future_use, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |
#cvv ⇒ String
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/checkout_sdk/payments/source/id_source.rb', line 17 class IdSource < PaymentSource attr_accessor :id, :cvv, :payment_method, :stored, :store_for_future_use, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |
#id ⇒ String
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/checkout_sdk/payments/source/id_source.rb', line 17 class IdSource < PaymentSource attr_accessor :id, :cvv, :payment_method, :stored, :store_for_future_use, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |
#payment_method ⇒ String
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/checkout_sdk/payments/source/id_source.rb', line 17 class IdSource < PaymentSource attr_accessor :id, :cvv, :payment_method, :stored, :store_for_future_use, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |
#store_for_future_use ⇒ TrueClass, FalseClass
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/checkout_sdk/payments/source/id_source.rb', line 17 class IdSource < PaymentSource attr_accessor :id, :cvv, :payment_method, :stored, :store_for_future_use, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |
#stored ⇒ TrueClass, FalseClass
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/checkout_sdk/payments/source/id_source.rb', line 17 class IdSource < PaymentSource attr_accessor :id, :cvv, :payment_method, :stored, :store_for_future_use, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |