Class Key
Key.
public sealed class Key
- Inheritance
-
Key
- Inherited Members
Properties
Array
Array value.
[JsonPropertyName("array")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public Key[]? Array { get; set; }
Property Value
- Key[]
Date
Date value.
[JsonPropertyName("date")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? Date { get; set; }
Property Value
Number
Number value.
[JsonPropertyName("number")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? Number { get; set; }
Property Value
String
String value.
[JsonPropertyName("string")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? String { get; set; }
Property Value
Type
Key type.
[JsonPropertyName("type")]
public KeyTypeValues Type { get; set; }