github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/CreateResponse.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 // CreateResponse represents class CreateTokenResponse 7 type CreateResponse struct { 8 IsNewToken *bool `json:"isNewToken,omitempty"` 9 OriginalPaymentID *string `json:"originalPaymentId,omitempty"` 10 Token *string `json:"token,omitempty"` 11 } 12 13 // NewCreateResponse constructs a new CreateResponse 14 func NewCreateResponse() *CreateResponse { 15 return &CreateResponse{} 16 }