Circle V2 API Docs
    Preparing search index...
    type GetAuditRunByIdOutput = {
        auditRun: SafeReturnType<typeof auditRunsRepo.getById>;
        hasPendingResponses: boolean;
        lastSync: ResolveAuditRunSyncServiceResult;
        responses: LegacyAuditRunResponseViewModel[];
        scopedCharts: AuditRunScopedChartView[] | null;
        score: number | null;
        statusCounts: {
            fail: number;
            needs_review: number;
            not_applicable: number;
            pass: number;
        };
        templateQuestionCount: number;
    }
    Index

    Properties

    auditRun: SafeReturnType<typeof auditRunsRepo.getById>
    hasPendingResponses: boolean
    scopedCharts: AuditRunScopedChartView[] | null
    score: number | null
    statusCounts: {
        fail: number;
        needs_review: number;
        not_applicable: number;
        pass: number;
    }
    templateQuestionCount: number