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 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
}