/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface IntegrationsListRequest { /** * * `COMPOSIO` - Composio */ integrationProvider?: "COMPOSIO" | null; /** * Number of results to return per page. */ limit?: number | null; /** * The initial index from which to return the results. */ offset?: number | null; /** * Which field to use when ordering the results. */ ordering?: string | null; /** * A search term. */ search?: string | null; supportsIntegrationTriggers?: string | null; }