using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api.Inventory; /// /// Represents location inventory balance details /// public class LocationInventoryBalance : ApiResponse { /// /// Gets or sets the unique identifier as UUID version 1 /// [JsonProperty(PropertyName = "locationUuid")] public string LocationUuid { get; set; } /// /// Gets or sets the tracked products /// [JsonProperty(PropertyName = "trackedProducts")] public List TrackedProducts { get; set; } /// /// Gets or sets the tracked variants /// [JsonProperty(PropertyName = "variants")] public List Variants { get; set; } /// /// Gets or sets the latest update date /// [JsonProperty(PropertyName = "latest")] public DateTime? LatestUpdate { get; set; } }