using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api.Inventory; /// /// Represents inventory balance details /// public class InventoryBalance : ApiResponse { /// /// Gets or sets the unique identifier as UUID version 1 /// [JsonProperty(PropertyName = "locationUuid")] public string LocationUuid { get; set; } /// /// Gets or sets the location type /// [JsonProperty(PropertyName = "locationType")] public string LocationType { get; set; } /// /// Gets or sets the unique identifier as UUID version 1 /// [JsonProperty(PropertyName = "productUuid")] public string ProductUuid { get; set; } /// /// Gets or sets the unique identifier as UUID version 1 /// [JsonProperty(PropertyName = "variantUuid")] public string VariantUuid { get; set; } /// /// Gets or sets the inventory balance /// [JsonProperty(PropertyName = "balance")] public int? Balance { get; set; } }