github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/ThreeDSecureData.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  // ThreeDSecureData represents class ThreeDSecureData
     7  type ThreeDSecureData struct {
     8  	AcsTransactionID *string `json:"acsTransactionId,omitempty"`
     9  	Method           *string `json:"method,omitempty"`
    10  	UtcTimestamp     *string `json:"utcTimestamp,omitempty"`
    11  }
    12  
    13  // NewThreeDSecureData constructs a new ThreeDSecureData
    14  func NewThreeDSecureData() *ThreeDSecureData {
    15  	return &ThreeDSecureData{}
    16  }