github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/dispute/Dispute.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  // Dispute represents class Dispute
     7  type Dispute struct {
     8  	DisputeOutput *Output       `json:"disputeOutput,omitempty"`
     9  	ID            *string       `json:"id,omitempty"`
    10  	PaymentID     *string       `json:"paymentId,omitempty"`
    11  	Status        *string       `json:"status,omitempty"`
    12  	StatusOutput  *StatusOutput `json:"statusOutput,omitempty"`
    13  }
    14  
    15  // NewDispute constructs a new Dispute
    16  func NewDispute() *Dispute {
    17  	return &Dispute{}
    18  }