github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/GPayThreeDSecure.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  // GPayThreeDSecure represents class GPayThreeDSecure
     7  type GPayThreeDSecure struct {
     8  	ChallengeCanvasSize *string          `json:"challengeCanvasSize,omitempty"`
     9  	ChallengeIndicator  *string          `json:"challengeIndicator,omitempty"`
    10  	ExemptionRequest    *string          `json:"exemptionRequest,omitempty"`
    11  	RedirectionData     *RedirectionData `json:"redirectionData,omitempty"`
    12  	SkipAuthentication  *bool            `json:"skipAuthentication,omitempty"`
    13  }
    14  
    15  // NewGPayThreeDSecure constructs a new GPayThreeDSecure
    16  func NewGPayThreeDSecure() *GPayThreeDSecure {
    17  	return &GPayThreeDSecure{}
    18  }