/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for setting student LLM access permissions */ export type SetStudentLLMAccess = { /** * The platform key where the LLM access should be set */ platform_key: string; /** * List of LLM resource paths. Format: ['llms/openai/models/gpt-4', 'llms/openai/', 'llms/']. Shorter paths grant access to all sub-resources. */ llm_resources: Array; };