MonoCloud Management SDK
    Preparing search index...

    Interface CreateGroupRequest

    Create Group Request: Used to create a new group.

    CreateGroupRequest

    interface CreateGroupRequest {
        description?: string | null;
        is_auto_assigned?: boolean;
        name: string;
    }
    Index

    Properties

    description?: string | null

    Description that explains the purpose or role of the group.

    CreateGroupRequest

    is_auto_assigned?: boolean

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

    CreateGroupRequest

    name: string

    The display name of the group.

    CreateGroupRequest