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