/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * tenant_id: "tenant_1234", * ids: ["CortexDoc1234", "CortexDoc4567"] * } */ export interface SourceDeleteRequest { tenant_id: string; sub_tenant_id?: string; /** List of source IDs to delete. */ ids: string[]; }