ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface Report

    interface Report {
        id: string;
        name: string;
        type:
            | "efficiency"
            | "cost"
            | "operator"
            | "equipment"
            | "production"
            | "quality";
        description: string;
        category: | "custom"
        | "daily"
        | "weekly"
        | "monthly"
        | "quarterly"
        | "yearly";
        status: "COMPLETED"
        | "PENDING"
        | "FAILED"
        | "GENERATING";
        generatedAt?: string;
        generatedBy?: { id: string; name: string; email: string };
        fileSize?: string;
        downloadCount: number;
        isScheduled: boolean;
        scheduleFrequency?: "daily" | "weekly" | "monthly";
        lastGenerated?: string;
        nextGeneration?: string;
        createdAt: string;
        updatedAt: string;
    }
    Index

    Properties

    id: string
    name: string
    type:
        | "efficiency"
        | "cost"
        | "operator"
        | "equipment"
        | "production"
        | "quality"
    description: string
    category: "custom" | "daily" | "weekly" | "monthly" | "quarterly" | "yearly"
    status: "COMPLETED" | "PENDING" | "FAILED" | "GENERATING"
    generatedAt?: string
    generatedBy?: { id: string; name: string; email: string }
    fileSize?: string
    downloadCount: number
    isScheduled: boolean
    scheduleFrequency?: "daily" | "weekly" | "monthly"
    lastGenerated?: string
    nextGeneration?: string
    createdAt: string
    updatedAt: string