github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/RefundBankMethodSpecificOutput.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  // RefundBankMethodSpecificOutput represents class RefundBankMethodSpecificOutput
     7  type RefundBankMethodSpecificOutput struct {
     8  	RefundProductID     *int32 `json:"refundProductId,omitempty"`
     9  	TotalAmountPaid     *int64 `json:"totalAmountPaid,omitempty"`
    10  	TotalAmountRefunded *int64 `json:"totalAmountRefunded,omitempty"`
    11  }
    12  
    13  // NewRefundBankMethodSpecificOutput constructs a new RefundBankMethodSpecificOutput
    14  func NewRefundBankMethodSpecificOutput() *RefundBankMethodSpecificOutput {
    15  	return &RefundBankMethodSpecificOutput{}
    16  }