using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api.Inventory; /// /// Represents the locations details /// public class LocationList : 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; } }