Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketRefRestriction

    A ref restriction (branch permission) configured on a project or repository. Users, groups, and access keys listed on the restriction are exempt from it.

    interface BitbucketRefRestriction {
        accessKeys?: RefRestrictionAccessKey[];
        groups?: string[];
        id: number;
        matcher: RefMatcher;
        scope?: BitbucketScope;
        type: RefRestrictionType;
        users?: BitbucketUser[];
    }
    Index

    Properties

    SSH access keys exempt from the restriction

    groups?: string[]

    Names of groups exempt from the restriction

    id: number
    matcher: RefMatcher

    The project or repository the restriction is configured on

    users?: BitbucketUser[]

    Users exempt from the restriction