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 supplementary data
///
public class SupplementaryData
{
#region Properties
///
/// Gets or sets the Level 2 and 3 data added to payments to reduce risk and payment processing costs.
///
[JsonProperty(PropertyName = "card")]
public CardData Card { get; set; }
#endregion
}