import { APIResource } from "../../core/resource.js"; import { PagePromise, V4PagePaginationArray, type V4PagePaginationArrayParams } from "../../core/pagination.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class BaseEvaluationTypes extends APIResource { static readonly _key: readonly ['aiGateway', 'evaluationTypes']; /** * List Evaluators * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const evaluationTypeListResponse of client.aiGateway.evaluationTypes.list( * { account_id: '0d37909e38d3e99c29fa2cd343ac421a' }, * )) { * // ... * } * ``` */ list(params: EvaluationTypeListParams, options?: RequestOptions): PagePromise; } export declare class EvaluationTypes extends BaseEvaluationTypes { } export type EvaluationTypeListResponsesV4PagePaginationArray = V4PagePaginationArray; export interface EvaluationTypeListResponse { id: string; created_at: string; description: string; enable: boolean; mandatory: boolean; modified_at: string; name: string; type: string; } export interface EvaluationTypeListParams extends V4PagePaginationArrayParams { /** * Path param */ account_id: string; /** * Query param */ order_by?: string; /** * Query param */ order_by_direction?: 'asc' | 'desc'; } export declare namespace EvaluationTypes { export { type EvaluationTypeListResponse as EvaluationTypeListResponse, type EvaluationTypeListResponsesV4PagePaginationArray as EvaluationTypeListResponsesV4PagePaginationArray, type EvaluationTypeListParams as EvaluationTypeListParams, }; } //# sourceMappingURL=evaluation-types.d.ts.map