Class: CheckoutSdk::Previous::Payments::IdSource
- Inherits:
-
PaymentSource
- Object
- PaymentSource
- CheckoutSdk::Previous::Payments::IdSource
- Defined in:
- lib/checkout_sdk/payments/previous/source/id_source.rb
Instance Attribute Summary collapse
- #cvv ⇒ String
- #id ⇒ 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.
20 21 22 |
# File 'lib/checkout_sdk/payments/previous/source/id_source.rb', line 20 def initialize super CheckoutSdk::Common::PaymentSourceType::ID end |
Instance Attribute Details
#cvv ⇒ String
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/checkout_sdk/payments/previous/source/id_source.rb', line 14 class IdSource < PaymentSource attr_accessor :id, :cvv, :stored, :store_for_future_use def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |
#id ⇒ String
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/checkout_sdk/payments/previous/source/id_source.rb', line 14 class IdSource < PaymentSource attr_accessor :id, :cvv, :stored, :store_for_future_use def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |
#store_for_future_use ⇒ TrueClass, FalseClass
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/checkout_sdk/payments/previous/source/id_source.rb', line 14 class IdSource < PaymentSource attr_accessor :id, :cvv, :stored, :store_for_future_use def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |
#stored ⇒ TrueClass, FalseClass
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/checkout_sdk/payments/previous/source/id_source.rb', line 14 class IdSource < PaymentSource attr_accessor :id, :cvv, :stored, :store_for_future_use def initialize super CheckoutSdk::Common::PaymentSourceType::ID end end |