github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/OrderTypeInformation.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  // OrderTypeInformation represents class OrderTypeInformation
     7  type OrderTypeInformation struct {
     8  	FundingType     *string `json:"fundingType,omitempty"`
     9  	PurchaseType    *string `json:"purchaseType,omitempty"`
    10  	TransactionType *string `json:"transactionType,omitempty"`
    11  	UsageType       *string `json:"usageType,omitempty"`
    12  }
    13  
    14  // NewOrderTypeInformation constructs a new OrderTypeInformation
    15  func NewOrderTypeInformation() *OrderTypeInformation {
    16  	return &OrderTypeInformation{}
    17  }