Class: CheckoutSdk::Tokens::ApplePayTokenRequest

Inherits:
WalletTokenRequest show all
Defined in:
lib/checkout_sdk/tokens/apple_pay_token_request.rb

Instance Attribute Summary collapse

Attributes inherited from WalletTokenRequest

#type

Instance Method Summary collapse

Constructor Details

#initializeApplePayTokenRequest

Returns a new instance of ApplePayTokenRequest.



10
11
12
# File 'lib/checkout_sdk/tokens/apple_pay_token_request.rb', line 10

def initialize
  super CheckoutSdk::Tokens::TokenType::APPLE_PAY
end

Instance Attribute Details

#token_dataApplePayTokenData

Returns:



7
8
9
10
11
12
13
# File 'lib/checkout_sdk/tokens/apple_pay_token_request.rb', line 7

class ApplePayTokenRequest < WalletTokenRequest
  attr_accessor :token_data

  def initialize
    super CheckoutSdk::Tokens::TokenType::APPLE_PAY
  end
end