github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/capture/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 capture
     5  
     6  // Response represents class CaptureResponse
     7  type Response struct {
     8  	CaptureOutput *Output       `json:"captureOutput,omitempty"`
     9  	ID            *string       `json:"id,omitempty"`
    10  	Status        *string       `json:"status,omitempty"`
    11  	StatusOutput  *StatusOutput `json:"statusOutput,omitempty"`
    12  }
    13  
    14  // NewResponse constructs a new Response
    15  func NewResponse() *Response {
    16  	return &Response{}
    17  }