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

    Interface MaintenanceData

    interface MaintenanceData {
        id: string;
        isActive: boolean;
        type: "INFO" | "WARNING" | "CRITICAL" | "EMERGENCY";
        title: string;
        message: string;
        actionText?: string;
        actionUrl?: string;
        startDate?: string;
        endDate?: string;
        createdAt: string;
        updatedAt: string;
        creator: { id: string; name?: string; email: string };
    }
    Index

    Properties

    id: string
    isActive: boolean
    type: "INFO" | "WARNING" | "CRITICAL" | "EMERGENCY"
    title: string
    message: string
    actionText?: string
    actionUrl?: string
    startDate?: string
    endDate?: string
    createdAt: string
    updatedAt: string
    creator: { id: string; name?: string; email: string }