Try your search with a different keyword or use * as a wildcard.
using Newtonsoft.Json;
namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;
///
/// Represents the authentication result
///
public class AuthenticationResult
{
#region Properties
///
/// Gets or sets the liability shift.
///
[JsonProperty(PropertyName = "liability_shift")]
public string LiabilityShift { get; set; }
///
/// Gets or sets the results of 3D Secure Authentication.
///
[JsonProperty(PropertyName = "three_d_secure")]
public AuthenticationResult3DS ThreeDSecure { get; set; }
#endregion
}