Bitbucket Data Center API Client
    Preparing search index...

    Interface ReviewerGroupPayload

    Payload shared by POST /settings/reviewer-groups (create) and PUT /settings/reviewer-groups/{id} (update).

    interface ReviewerGroupPayload {
        description?: string;
        name: string;
        users?: { id?: number; name: string; slug?: string }[];
    }
    Index

    Properties

    description?: string
    name: string
    users?: { id?: number; name: string; slug?: string }[]

    Members of the group; identify each user by name (and/or id/slug)