github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/hostedcheckout/CreatedPaymentOutput.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 import "github.com/Ingenico-ePayments/connect-sdk-go/domain/payment" 7 8 // CreatedPaymentOutput represents class CreatedPaymentOutput 9 type CreatedPaymentOutput struct { 10 DisplayedData *DisplayedData `json:"displayedData,omitempty"` 11 IsCheckedRememberMe *bool `json:"isCheckedRememberMe,omitempty"` 12 Payment *payment.Payment `json:"payment,omitempty"` 13 PaymentCreationReferences *payment.CreationReferences `json:"paymentCreationReferences,omitempty"` 14 // Deprecated: Use Payment.statusOutput.statusCategory instead 15 PaymentStatusCategory *string `json:"paymentStatusCategory,omitempty"` 16 TokenizationSucceeded *bool `json:"tokenizationSucceeded,omitempty"` 17 Tokens *string `json:"tokens,omitempty"` 18 } 19 20 // NewCreatedPaymentOutput constructs a new CreatedPaymentOutput 21 func NewCreatedPaymentOutput() *CreatedPaymentOutput { 22 return &CreatedPaymentOutput{} 23 }