github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/dispute/Response.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 // Response represents class DisputeResponse 7 type Response 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 // NewResponse constructs a new Response 16 func NewResponse() *Response { 17 return &Response{} 18 }