Class: CheckoutSdk::Payments::PaymentSource
- Inherits:
-
Object
- Object
- CheckoutSdk::Payments::PaymentSource
- Defined in:
- lib/checkout_sdk/payments/source/payment_source.rb
Direct Known Subclasses
AchSource, AfterPaySource, AlipayPlusSource, AlmaSource, BancontactSource, BankAccountSource, BenefitSource, BizumSource, CardSource, CustomerSource, CvConnectSource, EPSSource, FawrySource, GiropaySource, IdSource, IdealSource, IllicadoSource, KlarnaSource, KnetSource, MbwaySource, MultiBancoSource, NetworkTokenSource, OctopusSource, P24Source, PayPalSource, PlaidSource, PostFinanceSource, ProviderTokenSource, QPaySource, SepaSource, SequraSource, SofortSource, StcPaySource, TamaraSource, TokenSource, TrustlySource, WeChatPaySource
Instance Attribute Summary collapse
Instance Attribute Details
#type ⇒ String
Returns Common::PaymentSourceType.
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/checkout_sdk/payments/source/payment_source.rb', line 7 class PaymentSource attr_reader :type protected # @abstract # @param [String] type {CheckoutSdk::Common::PaymentSourceType} def initialize(type) @type = type end end |