Class GPayThreeDSecure
Inheritance
GPayThreeDSecure
Assembly: connect-sdk-dotnet.dll
Syntax
public class GPayThreeDSecure
Properties
ChallengeCanvasSize
Dimensions of the challenge window that potentially will be displayed to the customer. The challenge content is formatted to appropriately render in this window to provide the best possible user experience.
Preconfigured sizes are width x height in pixels of the window displayed in the customer browser window. Possible values are:
- 250x400 (default)
- 390x400
- 500x600
- 600x400
- full-screen
.
Declaration
public string ChallengeCanvasSize { get; set; }
Property Value
ChallengeIndicator
Allows you to indicate if you want the customer to be challenged for extra security on this transaction. Possible values:
- no-preference - You have no preference whether or not to challenge the customer (default)
- no-challenge-requested - you prefer the cardholder not to be challenged
- challenge-requested - you prefer the customer to be challenged
- challenge-required - you require the customer to be challenged
Declaration
public string ChallengeIndicator { get; set; }
Property Value
ExemptionRequest
Type of strong customer authentication (SCA) exemption requested for this transaction. Possible values:
- none - No exemption flagging is to be used of this transaction (Default).
- automatic - Our systems will determine the best possible exemption based on the transaction parameters and the risk scores.
- transaction-risk-analysis - You have determined that this transaction is of low risk and are willing to take the liability. Please note that your fraud rate needs to stay below thresholds to allow your use of this exemption.
- low-value - The value of the transaction is below 30 EUR. Please note that the issuer will still require every 5th low-value transaction pithing 24 hours to be strongly authenticated. The issuer will also keep track of the cumulative amount authorized on the card. When this exceeds 100 EUR strong customer authentication is also required.
- whitelist - You have been whitelisted by the customer at the issuer.
Declaration
public string ExemptionRequest { get; set; }
Property Value
RedirectionData
Object containing browser specific redirection related data
Declaration
public RedirectionData RedirectionData { get; set; }
Property Value
SkipAuthentication
- true = 3D Secure authentication will be skipped for this transaction. This setting should be used when isRecurring is set to true and recurringPaymentSequenceIndicator is set to recurring.
- false = 3D Secure authentication will not be skipped for this transaction.
Note: This is only possible if your account in our system is setup for 3D Secure authentication and if your configuration in our system allows you to override it per transaction.
Declaration
public bool? SkipAuthentication { get; set; }
Property Value