This class is used to serialize collections as a single JSON object on the wire.

interface VssJsonCollectionWrapperV<T> {
    count?: number;
    value?: T;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

Properties

count?: number

The number of serialized items.

value?: T

The serialized item.