MonoCloud Management SDK
    Preparing search index...

    Group: Represents a group used to organize users and client assignments.

    Group

    interface Group {
        clients_assigned: number;
        creation_time: number;
        description?: string | null;
        group_id: string;
        is_auto_assigned: boolean;
        last_assigned: number;
        last_updated: number;
        name: string;
        type: GroupTypes;
        users_assigned: number;
    }
    Index

    Properties

    clients_assigned: number

    The number of client applications associated with the group.

    Group

    creation_time: number

    Specifies the time at which the group was created (in Epoch).

    Group

    description?: string | null

    Description that explains the purpose or role of the group.

    Group

    group_id: string

    The unique identifier of the group.

    Group

    is_auto_assigned: boolean

    Indicates whether users are automatically added to this group upon sign-up.

    Group

    last_assigned: number

    Specifies the time of the most recent user or client assignment to the group (in Epoch).

    Group

    last_updated: number

    Specifies the time at which the group was last updated (in Epoch).

    Group

    name: string

    The display name of the group.

    Group

    Specifies whether the group is system-defined or user-managed.

    Group

    users_assigned: number

    The number of users currently assigned to the group.

    Group