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

GroupRelation

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

Message representing a transitive group of a user or a group.

interface GroupRelation {
displayName?: string;
group?: string;
groupKey?: EntityKey;
labels?: {
[key: string]: string;
}
;
relationType?:
| "RELATION_TYPE_UNSPECIFIED"
| "DIRECT"
| "INDIRECT"
| "DIRECT_AND_INDIRECT";
}

§Properties

§
displayName?: string
[src]

Display name for this group.

§
group?: string
[src]

Resource name for this group.

§
groupKey?: EntityKey
[src]

Entity key has an id and a namespace. In case of discussion forums, the id will be an email address without a namespace.

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

Labels for Group resource.

§
relationType?: "RELATION_TYPE_UNSPECIFIED" | "DIRECT" | "INDIRECT" | "DIRECT_AND_INDIRECT"
[src]

The relation between the member and the transitive group.

§

Membership roles of the member for the group.