/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface AppClientsListRequest { /** * The maximum number of App Clients to return at one time. */ limit?: number; /** * Regular expression to filter the names of the App Clients. */ filter?: string; /** * Used to retrieve the next page of App Clients after the limit has been reached. */ pageKey?: string; /** * The API will make a best effort to complete the request in the specified seconds or time out. */ requestTimeout?: number; /** * The API will make a best effort to complete the request in the specified milliseconds or time out. */ requestTimeoutMillis?: number; }