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

    Interface iGetClaimAttemptsSuccessResponse<T>

    interface iGetClaimAttemptsSuccessResponse<T extends NumberType> {
        bookmark?: string;
        docs: {
            attemptData?: { [instanceId: string]: Record<string, any> };
            attemptedAt: T;
            bitbadgesAddress: string;
            claimAttemptId: string;
            claimId: string;
            claimNumber: number;
            error?: string;
            success: boolean;
        }[];
        total?: number;
    }

    Type Parameters

    Implemented by

    Index

    Properties

    Properties

    bookmark?: string
    docs: {
        attemptData?: { [instanceId: string]: Record<string, any> };
        attemptedAt: T;
        bitbadgesAddress: string;
        claimAttemptId: string;
        claimId: string;
        claimNumber: number;
        error?: string;
        success: boolean;
    }[]

    Type Declaration

    • OptionalattemptData?: { [instanceId: string]: Record<string, any> }

      This is in the format of { [instanceId: string]: Record<string, any> } where the object is what was configured via the plugin.

    • attemptedAt: T
    • bitbadgesAddress: string
    • claimAttemptId: string
    • claimId: string
    • claimNumber: number

      Zero-based index claim number

    • Optionalerror?: string
    • success: boolean
    total?: number