github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/AmountBreakdown.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  // AmountBreakdown represents class AmountBreakdown
     7  type AmountBreakdown struct {
     8  	Amount *int64  `json:"amount,omitempty"`
     9  	Type   *string `json:"type,omitempty"`
    10  }
    11  
    12  // NewAmountBreakdown constructs a new AmountBreakdown
    13  func NewAmountBreakdown() *AmountBreakdown {
    14  	return &AmountBreakdown{}
    15  }