Webiant Logo Webiant Logo
  1. No results found.

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

PaymentTokenMetadata.cs

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
}