Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MembershipRelation

import type { MembershipRelation } from "https://googleapis.deno.dev/v1/cloudidentity:v1.ts";

Message containing membership relation.

interface MembershipRelation {
description?: string;
displayName?: string;
group?: string;
groupKey?: EntityKey;
labels?: {
[key: string]: string;
}
;
membership?: string;
roles?: MembershipRole[];
}

§Properties

§
description?: string
[src]

An extended description to help users determine the purpose of a Group.

§
displayName?: string
[src]

The display name of the Group.

§
group?: string
[src]

The resource name of the Group. Shall be of the form groups/{group_id}.

§
groupKey?: EntityKey
[src]

The EntityKey of the Group.

§
labels?: {
[key: string]: string;
}
[src]

One or more label entries that apply to the Group. Currently supported labels contain a key with an empty value.

§
membership?: string
[src]

The resource name of the Membership. Shall be of the form groups/{group_id}/memberships/{membership_id}.

§

The MembershipRoles that apply to the Membership.