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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package installments
     5  
     6  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"
     7  
     8  // GetInstallmentRequest represents class GetInstallmentRequest
     9  type GetInstallmentRequest struct {
    10  	AmountOfMoney    *definitions.AmountOfMoney `json:"amountOfMoney,omitempty"`
    11  	Bin              *string                    `json:"bin,omitempty"`
    12  	CountryCode      *string                    `json:"countryCode,omitempty"`
    13  	PaymentProductID *int32                     `json:"paymentProductId,omitempty"`
    14  }
    15  
    16  // NewGetInstallmentRequest constructs a new GetInstallmentRequest
    17  func NewGetInstallmentRequest() *GetInstallmentRequest {
    18  	return &GetInstallmentRequest{}
    19  }