Class: CheckoutSdk::Risk::IdSource

Inherits:
RiskPaymentSource show all
Defined in:
lib/checkout_sdk/risk/source/id_source.rb

Instance Attribute Summary collapse

Attributes inherited from RiskPaymentSource

#type

Instance Method Summary collapse

Constructor Details

#initializeIdSource

Returns a new instance of IdSource.



13
14
15
# File 'lib/checkout_sdk/risk/source/id_source.rb', line 13

def initialize
  super CheckoutSdk::Common::PaymentSourceType::ID
end

Instance Attribute Details

#cvvString

Returns:

  • (String)


9
10
11
12
13
14
15
16
# File 'lib/checkout_sdk/risk/source/id_source.rb', line 9

class IdSource < RiskPaymentSource
  attr_accessor :id,
                :cvv

  def initialize
    super CheckoutSdk::Common::PaymentSourceType::ID
  end
end

#idString

Returns:

  • (String)


9
10
11
12
13
14
15
16
# File 'lib/checkout_sdk/risk/source/id_source.rb', line 9

class IdSource < RiskPaymentSource
  attr_accessor :id,
                :cvv

  def initialize
    super CheckoutSdk::Common::PaymentSourceType::ID
  end
end