Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

AuthenticationResult3DS.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;

/// 
/// Represents the results of 3D Secure Authentication
/// 
public class AuthenticationResult3DS
{
    #region Properties

    /// 
    /// Gets or sets the outcome of the issuer's authentication.
    /// 
    [JsonProperty(PropertyName = "authentication_status")]
    public string AuthenticationStatus { get; set; }

    /// 
    /// Gets or sets the status of authentication eligibility.
    /// 
    [JsonProperty(PropertyName = "enrollment_status")]
    public string EnrollmentStatus { get; set; }

    #endregion
}