Interface iGetBrowseCollectionsSuccessResponse<T>

interface iGetBrowseCollectionsSuccessResponse<T> {
    activity: iTransferActivityDoc<T>[];
    addressLists: {
        [category: string]: iBitBadgesAddressList<T>[];
    };
    badges: {
        [category: string]: {
            badgeIds: iUintRange<T>[];
            collection: iBitBadgesCollection<T>;
        }[];
    };
    collections: {
        [category: string]: iBitBadgesCollection<T>[];
    };
    profiles: {
        [category: string]: iBitBadgesUserInfo<T>[];
    };
}

Type Parameters

Implemented by

Properties

activity: iTransferActivityDoc<T>[]
addressLists: {
    [category: string]: iBitBadgesAddressList<T>[];
}

Type declaration

badges: {
    [category: string]: {
        badgeIds: iUintRange<T>[];
        collection: iBitBadgesCollection<T>;
    }[];
}

Type declaration

collections: {
    [category: string]: iBitBadgesCollection<T>[];
}

Type declaration

profiles: {
    [category: string]: iBitBadgesUserInfo<T>[];
}

Type declaration