import type * as SarvamAI from "../index.mjs"; /** * Configuration parameters for Document Intelligence job. Specify the document language and desired output format. */ export interface DocDigitizationJobParameters { /** Primary language of the document in BCP-47 format (e.g. en-IN, hi-IN). Use this field name — not language_code (which other Sarvam APIs use). Sending language_code is ignored and defaults to hi-IN. */ language?: SarvamAI.DocDigitizationSupportedLanguage | undefined; /** Output format for the extracted content (delivered as a ZIP file). Accepted values: md, html, json. Use md for Markdown — not markdown (returns 400). */ output_format?: SarvamAI.DocDigitizationOutputFormat | undefined; }