Class: CheckoutSdk::Sessions::IdSource
- Inherits:
-
SessionSource
- Object
- SessionSource
- CheckoutSdk::Sessions::IdSource
- Defined in:
- lib/checkout_sdk/sessions/source/id_source.rb
Instance Attribute Summary collapse
Attributes inherited from SessionSource
#billing_address, #email, #home_phone, #mobile_phone, #scheme, #type, #work_phone
Instance Method Summary collapse
-
#initialize ⇒ IdSource
constructor
A new instance of IdSource.
Constructor Details
#initialize ⇒ IdSource
Returns a new instance of IdSource.
10 11 12 |
# File 'lib/checkout_sdk/sessions/source/id_source.rb', line 10 def initialize super SessionSourceType::ID end |
Instance Attribute Details
#id ⇒ String
7 8 9 10 11 12 13 |
# File 'lib/checkout_sdk/sessions/source/id_source.rb', line 7 class IdSource < SessionSource attr_accessor :id def initialize super SessionSourceType::ID end end |