Interface iClaimAlertDoc<T>

interface iClaimAlertDoc<T> {
    _docId: string;
    _id?: string;
    _notificationsHandled?: boolean;
    block: T;
    collectionId: T;
    cosmosAddresses: string[];
    from: string;
    message?: string;
    timestamp: T;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

_docId: string

A unique stringified document ID

_id?: string

A unique document ID (Mongo DB ObjectID)

_notificationsHandled?: boolean

Whether or not the notifications have been handled by the indexer or not.

block: T

The block number of the activity.

collectionId: T

The collection ID of the claim alert.

cosmosAddresses: string[]

The cosmos addresses of the users that have been alerted.

from: string

The sender

message?: string

The message of the claim alert.

timestamp: T

The timestamp of the activity.