Class ObjectPreview
Object containing abbreviated remote object value.
public sealed class ObjectPreview
- Inheritance
-
ObjectPreview
- Inherited Members
Properties
Description
String representation of the object.
[JsonPropertyName("description")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Description { get; set; }
Property Value
Entries
List of the entries. Specified for map and set subtype values only.
[JsonPropertyName("entries")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public EntryPreview[]? Entries { get; set; }
Property Value
Overflow
True iff some of the properties or entries of the original object did not fit.
[JsonPropertyName("overflow")]
public bool Overflow { get; set; }
Property Value
Properties
List of the properties.
[JsonPropertyName("properties")]
public PropertyPreview[] Properties { get; set; }
Property Value
Subtype
Object subtype hint. Specified for object type values only.
[JsonPropertyName("subtype")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public ObjectPreviewSubtypeValues? Subtype { get; set; }
Property Value
Type
Object type.
[JsonPropertyName("type")]
public ObjectPreviewTypeValues Type { get; set; }