Try your search with a different keyword or use * as a wildcard.
using Newtonsoft.Json;
namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api;
///
/// Represents the identity error response
///
public class IdentityErrorResponse : IApiResponse
{
#region Properties
///
/// Gets or sets the error message
///
[JsonProperty(PropertyName = "error")]
public string Error { get; set; }
///
/// Gets or sets the error description
///
[JsonProperty(PropertyName = "error_description")]
public string ErrorDescription { get; set; }
#endregion
}