/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface UpdateCorpusRequest { /** * The API will make a best effort to complete the request in the specified seconds or time out. */ requestTimeout?: number; /** * The API will make a best effort to complete the request in the specified milliseconds or time out. */ requestTimeoutMillis?: number; /** Set whether or not the corpus is enabled. If unset then the corpus will remain in the same state. */ enabled?: boolean; /** The name for the corpus. If unset or null, then the corpus will remain in the same state. */ name?: string; /** Description of the corpus. If unset or null, then the corpus will remain in the same state. */ description?: string; }