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