Class: CheckoutSdk::Tokens::GooglePayTokenRequest
- Inherits:
-
WalletTokenRequest
- Object
- WalletTokenRequest
- CheckoutSdk::Tokens::GooglePayTokenRequest
- Defined in:
- lib/checkout_sdk/tokens/google_pay_token_request.rb
Instance Attribute Summary collapse
Attributes inherited from WalletTokenRequest
Instance Method Summary collapse
-
#initialize ⇒ GooglePayTokenRequest
constructor
A new instance of GooglePayTokenRequest.
Constructor Details
#initialize ⇒ GooglePayTokenRequest
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_data ⇒ GooglePayTokenData
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 |