github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/CreationOutput.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  // CreationOutput represents class PaymentCreationOutput
     7  type CreationOutput struct {
     8  	AdditionalReference   *string `json:"additionalReference,omitempty"`
     9  	ExternalReference     *string `json:"externalReference,omitempty"`
    10  	IsCheckedRememberMe   *bool   `json:"isCheckedRememberMe,omitempty"`
    11  	IsNewToken            *bool   `json:"isNewToken,omitempty"`
    12  	Token                 *string `json:"token,omitempty"`
    13  	TokenizationSucceeded *bool   `json:"tokenizationSucceeded,omitempty"`
    14  }
    15  
    16  // NewCreationOutput constructs a new CreationOutput
    17  func NewCreationOutput() *CreationOutput {
    18  	return &CreationOutput{}
    19  }