adobe-firefly-sdk
    Preparing search index...

    Type Alias FolderCreateRequest

    FolderCreateRequest

    Represents a request body for creating a folder.


    NOTE: The client must supply either

    • a name (for single folder creation), or
    • a path (for hierarchy creation) depending on the type of folder creation requested.

    type FolderCreateRequest = {
        name?: AssetName;
        options?: OperationOptions;
        parentId: AssetId;
        path?: Path;
    }
    Index

    Properties

    name?: AssetName
    parentId: AssetId

    Asset Id of the parent container (project/folder).

    path?: Path