Represents the processed paginated response for user groups.

interface ESPPaginatedGroupsResponse {
    fetchNext?: () => Promise<ESPPaginatedGroupsResponse>;
    groups: ESPRMGroup[];
    hasNext: boolean;
}

Properties

fetchNext?: () => Promise<ESPPaginatedGroupsResponse>
groups: ESPRMGroup[]
hasNext: boolean