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 seller protection
///
public class SellerProtection
{
#region Properties
///
/// Gets or sets a value indicating whether the transaction is eligible for seller protection.
///
[JsonProperty(PropertyName = "status")]
public string Status { get; set; }
///
/// Gets or sets the array of conditions that are covered for the transaction.
///
[JsonProperty(PropertyName = "dispute_categories")]
public List DisputeCategories { get; set; }
#endregion
}