using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api.Pusher; /// /// Represents the subscriptions details /// public class SubscriptionList : List, 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; } }