Webiant Logo Webiant Logo
  1. No results found.

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

Location.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Zettle.Domain.Api.Inventory;

/// 
/// Represents location details
/// 
public class Location : ApiResponse
{
    /// 
    /// Gets or sets the unique identifier as UUID version 1
    /// 
    [JsonProperty(PropertyName = "uuid")]
    public string Uuid { get; set; }

    /// 
    /// Gets or sets the type
    /// 
    [JsonProperty(PropertyName = "type")]
    public string Type { get; set; }

    /// 
    /// Gets or sets the name
    /// 
    [JsonProperty(PropertyName = "name")]
    public string Name { get; set; }

    /// 
    /// Gets or sets the description
    /// 
    [JsonProperty(PropertyName = "description")]
    public string Description { get; set; }

    /// 
    ///  Gets or sets a value indicating whether the location is default
    /// 
    [JsonProperty(PropertyName = "default")]
    public bool? IsDefault { get; set; }
}