Interface iGroupPage<T>

interface iGroupPage<T> {
    claimIds?: string[];
    collectionIds?: T[];
    events?: iEvent<T>[];
    listIds?: string[];
    mapIds?: string[];
    metadata: iMetadata<T>;
    pageId: string;
    points?: iTierWithOptionalWeight<T>[];
    quests?: iTierWithOptionalWeight<T>[];
    tiers?: iTierWithOptionalWeight<T>[];
}

Type Parameters

Implemented by

Properties

claimIds?: string[]

The claim IDs in the group

collectionIds?: T[]

The collection IDs in the group

events?: iEvent<T>[]

The events in the group

listIds?: string[]

The address list IDs in the group

mapIds?: string[]

Mapping IDs in the group

metadata: iMetadata<T>

Metadata for the page

pageId: string

The page ID

Points to display in the page

Quests to display in the page

Tiers to display in the page