github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/EInvoicePaymentMethodSpecificInput.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  // EInvoicePaymentMethodSpecificInput represents class EInvoicePaymentMethodSpecificInput
     7  type EInvoicePaymentMethodSpecificInput struct {
     8  	AcceptedTermsAndConditions      *bool                                    `json:"acceptedTermsAndConditions,omitempty"`
     9  	PaymentProduct9000SpecificInput *EInvoicePaymentProduct9000SpecificInput `json:"paymentProduct9000SpecificInput,omitempty"`
    10  	PaymentProductID                *int32                                   `json:"paymentProductId,omitempty"`
    11  	RequiresApproval                *bool                                    `json:"requiresApproval,omitempty"`
    12  }
    13  
    14  // NewEInvoicePaymentMethodSpecificInput constructs a new EInvoicePaymentMethodSpecificInput
    15  func NewEInvoicePaymentMethodSpecificInput() *EInvoicePaymentMethodSpecificInput {
    16  	return &EInvoicePaymentMethodSpecificInput{}
    17  }