Bitbucket Data Center API Client
    Preparing search index...

    Interface UpdateRepositoryData

    Payload for PUT /rest/api/latest/projects/{key}/repos/{slug}.

    Only the fields to change need to be supplied; the server merges them with the repository's current state. Set project.key to move the repository to a different project.

    interface UpdateRepositoryData {
        description?: string;
        forkable?: boolean;
        name?: string;
        project?: { key: string };
        public?: boolean;
    }
    Index

    Properties

    description?: string
    forkable?: boolean
    name?: string
    project?: { key: string }
    public?: boolean