Webiant Logo Webiant Logo
  1. No results found.

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

SubscriptionList.cs

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; }
}