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

    Interface DocumentFile

    interface DocumentFile {
        id: string;
        filename: string;
        url: string;
        key: string;
        size: number;
        mimetype: string;
        category?: string | null;
        isPublic: boolean;
        createdAt: string;
        businessOpportunityId?: string | null;
        businessOpportunity?:
            | {
                id: string;
                name: string;
                number: string;
                stage: string;
                status: string;
            }
            | null;
    }
    Index

    Properties

    id: string
    filename: string
    url: string
    key: string
    size: number
    mimetype: string
    category?: string | null
    isPublic: boolean
    createdAt: string
    businessOpportunityId?: string | null
    businessOpportunity?:
        | {
            id: string;
            name: string;
            number: string;
            stage: string;
            status: string;
        }
        | null