Backstage
    Preparing search index...

    A Bitbucket workspace. Workspaces are used to organize repositories.

    interface Workspace {
        created_on?: string;
        forking_mode?: Models.WorkspaceForkingModeEnum;
        is_privacy_enforced?: boolean;
        is_private?: boolean;
        links?: WorkspaceLinks;
        name?: string;
        slug?: string;
        type: string;
        updated_on?: string;
        uuid?: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    created_on?: string

    Controls the rules for forking repositories within this workspace.

    • allow_forks: unrestricted forking
    • internal_only: prevents forking of private repositories outside the workspace or to public repositories
    is_privacy_enforced?: boolean

    Indicates whether the workspace enforces private content, or whether it allows public content.

    is_private?: boolean

    Indicates whether the workspace is publicly accessible, or whether it is private to the members and consequently only visible to members.

    name?: string

    The name of the workspace.

    slug?: string

    The short label that identifies this workspace.

    type: string
    updated_on?: string
    uuid?: string

    The workspace's immutable id.