Interface ICollection

A Collection is usually defined as a ordinal collection. This class expose the trais that are available for the Collection.

interface ICollection {
    id: string;
    name?: string;
    description?: string;
    collectionTraits?: ICollectionTrait[];
}

Properties

id: string
name?: string
description?: string
collectionTraits?: ICollectionTrait[]