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

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
MMNEPVFCICPMFPCPTTAAATR