github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/MobilePaymentMethodSpecificInput.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  // MobilePaymentMethodSpecificInput represents class MobilePaymentMethodSpecificInput
     7  type MobilePaymentMethodSpecificInput struct {
     8  	AuthorizationMode              *string                               `json:"authorizationMode,omitempty"`
     9  	CustomerReference              *string                               `json:"customerReference,omitempty"`
    10  	DecryptedPaymentData           *DecryptedPaymentData                 `json:"decryptedPaymentData,omitempty"`
    11  	EncryptedPaymentData           *string                               `json:"encryptedPaymentData,omitempty"`
    12  	PaymentProduct320SpecificInput *MobilePaymentProduct320SpecificInput `json:"paymentProduct320SpecificInput,omitempty"`
    13  	PaymentProductID               *int32                                `json:"paymentProductId,omitempty"`
    14  	RequiresApproval               *bool                                 `json:"requiresApproval,omitempty"`
    15  	SkipFraudService               *bool                                 `json:"skipFraudService,omitempty"`
    16  }
    17  
    18  // NewMobilePaymentMethodSpecificInput constructs a new MobilePaymentMethodSpecificInput
    19  func NewMobilePaymentMethodSpecificInput() *MobilePaymentMethodSpecificInput {
    20  	return &MobilePaymentMethodSpecificInput{}
    21  }