github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/EWallet.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package token 5 6 // EWallet represents class TokenEWallet 7 type EWallet struct { 8 Alias *string `json:"alias,omitempty"` 9 Customer *CustomerToken `json:"customer,omitempty"` 10 Data *EWalletData `json:"data,omitempty"` 11 } 12 13 // NewEWallet constructs a new EWallet 14 func NewEWallet() *EWallet { 15 return &EWallet{} 16 }