using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api.Product; /// /// Represents the import details /// public class Import : ApiResponse { /// /// Gets or sets the unique identifier as UUID version 1 /// [JsonProperty(PropertyName = "uuid")] public string Uuid { get; set; } /// /// Gets or sets the state /// [JsonProperty(PropertyName = "state")] public string State { get; set; } /// /// Gets or sets the number of imported items /// [JsonProperty(PropertyName = "items")] public int? Items { get; set; } /// /// Gets or sets the error message /// [JsonProperty(PropertyName = "errorMessage")] public string ErrorMessage { get; set; } /// /// Gets or sets the created date /// [JsonProperty(PropertyName = "created")] public DateTime? Created { get; set; } /// /// Gets or sets the finished date /// [JsonProperty(PropertyName = "finished")] public DateTime? Finished { get; set; } }