github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/OrderReferences.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  // OrderReferences represents class OrderReferences
     7  type OrderReferences struct {
     8  	Descriptor         *string           `json:"descriptor,omitempty"`
     9  	InvoiceData        *OrderInvoiceData `json:"invoiceData,omitempty"`
    10  	MerchantOrderID    *int64            `json:"merchantOrderId,omitempty"`
    11  	MerchantReference  *string           `json:"merchantReference,omitempty"`
    12  	ProviderID         *string           `json:"providerId,omitempty"`
    13  	ProviderMerchantID *string           `json:"providerMerchantId,omitempty"`
    14  }
    15  
    16  // NewOrderReferences constructs a new OrderReferences
    17  func NewOrderReferences() *OrderReferences {
    18  	return &OrderReferences{}
    19  }