github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/SchemeTokenData.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package payment 5 6 // SchemeTokenData represents class SchemeTokenData 7 type SchemeTokenData struct { 8 CardholderName *string `json:"cardholderName,omitempty"` 9 Cryptogram *string `json:"cryptogram,omitempty"` 10 Eci *string `json:"eci,omitempty"` 11 NetworkToken *string `json:"networkToken,omitempty"` 12 TokenExpiryDate *string `json:"tokenExpiryDate,omitempty"` 13 } 14 15 // NewSchemeTokenData constructs a new SchemeTokenData 16 func NewSchemeTokenData() *SchemeTokenData { 17 return &SchemeTokenData{} 18 }