github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/hostedcheckout/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 hostedcheckout 5 6 // CreateResponse represents class CreateHostedCheckoutResponse 7 type CreateResponse struct { 8 RETURNMAC *string `json:"RETURNMAC,omitempty"` 9 HostedCheckoutID *string `json:"hostedCheckoutId,omitempty"` 10 InvalidTokens *[]string `json:"invalidTokens,omitempty"` 11 MerchantReference *string `json:"merchantReference,omitempty"` 12 PartialRedirectURL *string `json:"partialRedirectUrl,omitempty"` 13 } 14 15 // NewCreateResponse constructs a new CreateResponse 16 func NewCreateResponse() *CreateResponse { 17 return &CreateResponse{} 18 }