github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/RefundCardMethodSpecificOutput.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  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"
     7  
     8  // RefundCardMethodSpecificOutput represents class RefundCardMethodSpecificOutput
     9  type RefundCardMethodSpecificOutput struct {
    10  	AuthorisationCode   *string                     `json:"authorisationCode,omitempty"`
    11  	Card                *definitions.CardEssentials `json:"card,omitempty"`
    12  	RefundProductID     *int32                      `json:"refundProductId,omitempty"`
    13  	TotalAmountPaid     *int64                      `json:"totalAmountPaid,omitempty"`
    14  	TotalAmountRefunded *int64                      `json:"totalAmountRefunded,omitempty"`
    15  }
    16  
    17  // NewRefundCardMethodSpecificOutput constructs a new RefundCardMethodSpecificOutput
    18  func NewRefundCardMethodSpecificOutput() *RefundCardMethodSpecificOutput {
    19  	return &RefundCardMethodSpecificOutput{}
    20  }