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 payment token metadata
///
public class PaymentTokenMetadata
{
#region Properties
///
/// Gets or sets the related order ID.
///
[JsonProperty(PropertyName = "order_id")]
public string OrderId { get; set; }
#endregion
}