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 }