/** * This file was auto-generated by Fern from our API Definition. */ import * as Mercoa from "../../../../index.js"; /** * @example * {} */ export interface EntityGroupFindRequest { /** The maximum number of results to return. Defaults to 1. Max is 20. */ limit?: number; startingAfter?: Mercoa.EntityGroupId; /** Search entity groups by name. This will perform a case-insensitive search on the group name. */ search?: string; }