/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface ListIntegrationAuthConfigsRequest { /** * The response fields to expand for more information. * - 'integration_credentials' expands the list of integration credentials that the authenticated entity has access to for the auth config. * - 'additional_parameters' (retrieve only) fetches additional parameter requirements for the auth config. */ expand?: string | string[]; integrationName?: string | null; /** * Multiple values may be separated by commas. */ integrationNames?: string | string[]; integrationProvider?: string | 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; }