Class: CheckoutSdk::Tokens::GooglePayTokenRequest

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

Instance Attribute Summary collapse

Attributes inherited from WalletTokenRequest

#type

Instance Method Summary collapse

Constructor Details

#initializeGooglePayTokenRequest

Returns a new instance of GooglePayTokenRequest.



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

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

Instance Attribute Details

#token_dataGooglePayTokenData

Returns:



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

class GooglePayTokenRequest < WalletTokenRequest
  attr_accessor :token_data

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