/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface ListIntegrationToolsRequest { /** * Whether to filter the tools by important */ important?: boolean | null; /** * Whether to include deprecated tools */ includeDeprecated?: boolean | null; /** * The Vellum Integration name */ integrationName?: string | null; /** * Number of results to return per page. */ limit?: number | null; /** * The initial index from which to return the results. */ offset?: number | null; /** * The search term to filter the tools by */ search?: string | null; /** * The version of the toolkit to lookup. Pass 'latest' to get the latest version, or a specific version string to pin it. If not provided, uses the provider's default. */ toolkitVersion?: string | null; }