Type Alias IMGroupsListIMDirectoryGroupsResponse

IMGroupsListIMDirectoryGroupsResponse: { total_records?: number } & {
    groups?: (
        { id?: string } & { name?: string; total_members?: number } & {
            search_by_account?: boolean;
            search_by_domain?: boolean;
            search_by_ma_account?: boolean;
            type?: "normal" | "shared" | "restricted";
        }
    )[];
}