@twinfinity/core
    Preparing search index...

    Interface UploadClientOperationCreate

    Defines what is required to create a new change (file) in a existing folder or layer..

    interface UploadClientOperationCreate {
        content: unknown;
        filename: string;
        metadata: DefaultChangeUploadableMetadata;
        operation: "create";
        parent: BimChangeLayer | BimFolder;
    }
    Index

    Properties

    content: unknown

    Content of the file

    filename: string

    Filename that the change will get.

    Metadata.

    operation: "create"

    Type of operation. In this case 'create' to represent file creation.

    Folder or layer to create change (file) in