using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api; /// /// Represents base response details /// public class ApiResponse : IApiResponse { /// /// 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; } /// /// Gets or sets the developer message /// [JsonProperty(PropertyName = "developerMessage")] public string DeveloperMessage { get; set; } }