github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/refund/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 refund 5 6 import ( 7 "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions" 8 "github.com/Ingenico-ePayments/connect-sdk-go/domain/payment" 9 ) 10 11 // Response represents class RefundResponse 12 type Response struct { 13 ID *string `json:"id,omitempty"` 14 RefundOutput *payment.RefundOutput `json:"refundOutput,omitempty"` 15 Status *string `json:"status,omitempty"` 16 StatusOutput *definitions.OrderStatusOutput `json:"statusOutput,omitempty"` 17 } 18 19 // NewResponse constructs a new Response 20 func NewResponse() *Response { 21 return &Response{} 22 }