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