github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/DecryptedPaymentData.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  // DecryptedPaymentData represents class DecryptedPaymentData
     7  type DecryptedPaymentData struct {
     8  	// Deprecated: Use decryptedPaymentData.paymentMethod instead
     9  	AuthMethod     *string `json:"authMethod,omitempty"`
    10  	CardholderName *string `json:"cardholderName,omitempty"`
    11  	Cryptogram     *string `json:"cryptogram,omitempty"`
    12  	Dpan           *string `json:"dpan,omitempty"`
    13  	Eci            *int32  `json:"eci,omitempty"`
    14  	ExpiryDate     *string `json:"expiryDate,omitempty"`
    15  	Pan            *string `json:"pan,omitempty"`
    16  	PaymentMethod  *string `json:"paymentMethod,omitempty"`
    17  }
    18  
    19  // NewDecryptedPaymentData constructs a new DecryptedPaymentData
    20  func NewDecryptedPaymentData() *DecryptedPaymentData {
    21  	return &DecryptedPaymentData{}
    22  }