interface Group {
    applicationIds: string[];
    createdAt?: Date;
    deletable: boolean;
    description: string;
    editable: boolean;
    id: string;
    managed: boolean;
    name: string;
    organizationId: string;
    tags: string[];
    updatedAt?: Date;
    userIds: string[];
}

Properties

applicationIds: string[]

IDs of applications attached to this group.

createdAt?: Date

Date and time of group creation.

deletable: boolean

Defines whether or not the group is deletable.

description: string

Description of the group.

editable: boolean

Defines whether or not the group is editable.

id: string

ID of the group.

managed: boolean

Defines whether or not the group is managed.

name: string

Name of the group.

organizationId: string

ID of Organization linked to the group.

tags: string[]

Tags associated to the group.

updatedAt?: Date

Date and time of last group update.

userIds: string[]

IDs of users attached to this group.