/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * tenant_id: "tenant_1234" * } */ export interface UploadVerifyProcessingRequest { /** Single file ID (deprecated - use file_ids instead). */ file_id?: string; /** One or more file IDs to check processing status for. */ file_ids?: string | string[]; /** Unique identifier for the tenant/organization */ tenant_id?: string; /** Optional sub-tenant identifier used to organize data within a tenant. If omitted, the default sub-tenant created during tenant setup will be used. */ sub_tenant_id?: string; }