interface RpnGroup {
    active: boolean;
    createdAt?: Date;
    id: number;
    membersCount: number;
    name: string;
    organizationId: string;
    owner: string;
    projectId: string;
    type: RpnGroupType;
}

Properties

active: boolean

Whether the group is active or not.

createdAt?: Date

Rpn group creation date.

id: number

Rpn group member ID.

membersCount: number

Total number of members.

name: string

Rpn group name.

organizationId: string

Rpn group organization ID.

owner: string

RPN group owner.

projectId: string

Rpn group project ID.

Rpn group type (local or shared).