Method: CheckoutSdk::Previous::Payments::NetworkTokenSource#cryptogram

Defined in:
lib/checkout_sdk/payments/previous/source/network_token_source.rb,
lib/checkout_sdk/payments/previous/source/network_token_source.rb

#cryptogramString

Returns:

  • (String)


28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/checkout_sdk/payments/previous/source/network_token_source.rb', line 28

class NetworkTokenSource < PaymentSource
  attr_accessor :token,
                :expiry_month,
                :expiry_year,
                :token_type,
                :cryptogram,
                :eci,
                :stored,
                :name,
                :cvv,
                :billing_address,
                :phone

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