Class PropertyPreview
public sealed record PropertyPreview : IEquatable<PropertyPreview>
- Inheritance
-
PropertyPreview
- Implements
- Inherited Members
Constructors
PropertyPreview(string, string)
public PropertyPreview(string Name, string Type)
Parameters
NamestringProperty name.
TypestringObject type. Accessor means that the property itself is an accessor property.
Properties
Name
Property name.
public string Name { get; init; }
Property Value
Subtype
Object subtype hint. Specified for object type values only.
public string? Subtype { get; init; }
Property Value
Type
Object type. Accessor means that the property itself is an accessor property.
public string Type { get; init; }
Property Value
Value
User-friendly property value string.
public string? Value { get; init; }
Property Value
ValuePreview
Nested value preview.
public ObjectPreview? ValuePreview { get; init; }