Try your search with a different keyword or use * as a wildcard.
using Newtonsoft.Json;
namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;
/// <summary>
/// Represents the details about a saved payment source
/// </summary>
public class Vault
{
#region Properties
/// <summary>
/// Gets or sets the PayPal-generated ID for the saved payment source.
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// Gets or sets the vault status.
/// </summary>
[JsonProperty(PropertyName = "status")]
public string Status { get; set; }
/// <summary>
/// Gets or sets the array of request-related [HATEOAS links](/docs/api/reference/api-responses/#hateoas-links). To complete payer approval, use the `approve` link with the `GET` method.
/// </summary>
[JsonProperty(PropertyName = "links")]
public List<Link> Links { get; set; }
/// <summary>
/// Gets or sets the customer in merchant's system of records.
/// </summary>
[JsonProperty(PropertyName = "customer")]
public Payer Customer { get; set; }
#endregion
}