Webiant Logo Webiant Logo
  1. No results found.

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

StatusDetails.cs

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
}