Webiant Logo Webiant Logo
  1. No results found.

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

VerificationInstruction.cs

using Newtonsoft.Json;

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

/// 
/// Represents the instruction to verify the card
/// 
public class VerificationInstruction
{
    #region Properties

    /// 
    /// Gets or sets the method used for card verification.
    /// 
    [JsonProperty(PropertyName = "method")]
    public string Method { get; set; }

    #endregion
}