Interface JsonRepresentation<T>

Contains a JSON object and any associated metadata. Similar to a Representation but with all the data in memory instead of as a stream and specific to JSON.

interface JsonRepresentation<T> {
    json: T;
    metadata?: RepresentationMetadata;
}

Type Parameters

Properties

Properties

json: T