bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iApprovalItemDoc<T>

    interface iApprovalItemDoc<T extends NumberType> {
        _docId: string;
        _id?: string;
        approval: iCollectionApproval<T>;
        approvalId: string;
        approvalLevel: "incoming" | "outgoing";
        approvalType: string;
        approverAddress: string;
        collectionId: string;
        deletedAt?: T;
        denom?: string;
        isActive?: boolean;
        nextCheckTime?: T;
        numTransfersLeft?: T;
        price?: T;
        sufficientBalances?: boolean;
        tokenId?: T;
        used?: boolean;
    }

    Type Parameters

    Hierarchy (View Summary)

    • Doc
      • iApprovalItemDoc

    Implemented by

    Index

    Properties

    _docId: string

    A unique stringified document ID

    _id?: string

    A unique document ID (Mongo DB ObjectID)

    Approval itself

    approvalId: string

    The approval ID

    approvalLevel: "incoming" | "outgoing"

    The approval level

    approvalType: string

    The approval type

    approverAddress: string

    The approver address

    collectionId: string

    The collection ID

    deletedAt?: T

    Deleted at timestamp

    denom?: string

    Denom

    isActive?: boolean

    Is active currently

    nextCheckTime?: T

    Next check time

    numTransfersLeft?: T

    Number of transfers left

    price?: T

    The price of the listing

    sufficientBalances?: boolean

    Owner has sufficient balances

    tokenId?: T

    The token ID

    used?: boolean

    Explicitly marked as used or expired