@jataware/beaker-client
    Preparing search index...

    Interface ISessionAttachment

    interface ISessionAttachment {
        archive_error?: string | null;
        archive_status?: "failed" | "extracted" | null;
        file_count: number;
        files: string[];
        id: string;
        kind: "file" | "archive";
        mimetype: string;
        name: string;
        original_path?: string | null;
        path?: string | null;
        root_path: string;
        size: number;
        [key: string]: PartialJSONValue | undefined;
    }

    Hierarchy

    • PartialJSONObject
      • ISessionAttachment

    Indexable

    • [key: string]: PartialJSONValue | undefined
    Index
    archive_error?: string | null
    archive_status?: "failed" | "extracted" | null
    file_count: number
    files: string[]
    id: string
    kind: "file" | "archive"
    mimetype: string
    name: string
    original_path?: string | null
    path?: string | null
    root_path: string
    size: number