Represents the backend response for user groups.

interface GetGroupsAPIResponse {
    groups: Record<string, any>[];
    next_id: string;
    total: string;
}

Properties

Properties

groups: Record<string, any>[]
next_id: string
total: string