github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/dispute/Reference.go (about)

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package dispute
     5  
     6  // Reference represents class DisputeReference
     7  type Reference struct {
     8  	MerchantOrderID   *string `json:"merchantOrderId,omitempty"`
     9  	MerchantReference *string `json:"merchantReference,omitempty"`
    10  	PaymentReference  *string `json:"paymentReference,omitempty"`
    11  	ProviderID        *string `json:"providerId,omitempty"`
    12  	ProviderReference *string `json:"providerReference,omitempty"`
    13  }
    14  
    15  // NewReference constructs a new Reference
    16  func NewReference() *Reference {
    17  	return &Reference{}
    18  }