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