Class PropertyPreview
PropertyPreview
public sealed class PropertyPreview
- Inheritance
-
PropertyPreview
- Inherited Members
Properties
Name
Property name.
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Subtype
Object subtype hint. Specified for object type values only.
[JsonPropertyName("subtype")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public PropertyPreviewSubtypeValues? Subtype { get; set; }
Property Value
Type
Object type. Accessor means that the property itself is an accessor property.
[JsonPropertyName("type")]
public PropertyPreviewTypeValues Type { get; set; }
Property Value
Value
User-friendly property value string.
[JsonPropertyName("value")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Value { get; set; }
Property Value
ValuePreview
Nested value preview.
[JsonPropertyName("valuePreview")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public ObjectPreview? ValuePreview { get; set; }