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 details of the transaction status
///
public class StatusDetails
{
#region Properties
///
/// Gets or sets the reason why the transaction is in the particular status.
///
[JsonProperty(PropertyName = "reason")]
public string Reason { get; set; }
#endregion
}