github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/CancelResponse.go (about)

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package payment
     5  
     6  // CancelResponse represents class CancelPaymentResponse
     7  type CancelResponse struct {
     8  	CardPaymentMethodSpecificOutput   *CancelPaymentCardPaymentMethodSpecificOutput   `json:"cardPaymentMethodSpecificOutput,omitempty"`
     9  	MobilePaymentMethodSpecificOutput *CancelPaymentMobilePaymentMethodSpecificOutput `json:"mobilePaymentMethodSpecificOutput,omitempty"`
    10  	Payment                           *Payment                                        `json:"payment,omitempty"`
    11  }
    12  
    13  // NewCancelResponse constructs a new CancelResponse
    14  func NewCancelResponse() *CancelResponse {
    15  	return &CancelResponse{}
    16  }