import type * as ElevenLabs from "../../../../index"; /** * @example * { * cursor: "cursor", * pageSize: 1, * label: "label", * environment: "environment", * type: "string" * } */ export interface EnvironmentVariablesListRequest { /** Pagination cursor from previous response */ cursor?: string; /** Number of items to return (1-100) */ pageSize?: number; /** Filter by exact label match */ label?: string; /** Filter to only return variables that have this environment. When specified, the values dict in the response will only contain this environment. */ environment?: string; /** Filter by variable type */ type?: ElevenLabs.EnvironmentVariablesListRequestType; }