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

    Interface iComplianceDoc<T>

    interface iComplianceDoc<T extends NumberType> {
        _docId: string;
        _id?: string;
        accounts: {
            nsfw: { bitbadgesAddress: string; reason: string }[];
            reported: { bitbadgesAddress: string; reason: string }[];
        };
        applications?: {
            nsfw: { applicationId: string; reason: string }[];
            reported: { applicationId: string; reason: string }[];
        };
        claims?: {
            nsfw: { claimId: string; reason: string }[];
            reported: { claimId: string; reason: string }[];
        };
        maps?: {
            nsfw: { mapId: string; reason: string }[];
            reported: { mapId: string; reason: string }[];
        };
        tokens: {
            nsfw: iBatchTokenDetails<T>[];
            reported: iBatchTokenDetails<T>[];
        };
    }

    Type Parameters

    Hierarchy (View Summary)

    • Doc
      • iComplianceDoc

    Implemented by

    Index

    Properties

    _docId: string

    A unique stringified document ID

    _id?: string

    A unique document ID (Mongo DB ObjectID)

    accounts: {
        nsfw: { bitbadgesAddress: string; reason: string }[];
        reported: { bitbadgesAddress: string; reason: string }[];
    }
    applications?: {
        nsfw: { applicationId: string; reason: string }[];
        reported: { applicationId: string; reason: string }[];
    }
    claims?: {
        nsfw: { claimId: string; reason: string }[];
        reported: { claimId: string; reason: string }[];
    }
    maps?: {
        nsfw: { mapId: string; reason: string }[];
        reported: { mapId: string; reason: string }[];
    }
    tokens: { nsfw: iBatchTokenDetails<T>[]; reported: iBatchTokenDetails<T>[] }