Variable RedactionJobStatusResponseSchemaConst
RedactionJobStatusResponseSchema: ZodObject<
{
bulkRedactionResponse: ZodOptional<
ZodObject<
{
results: ZodArray<
ZodObject<
{ externalId: ZodString; successful: ZodBoolean },
$loose,
>,
>;
},
$loose,
>,
>;
jobStatus: ZodOptional<
ZodCustom<
string & {}
| "IN_PROGRESS"
| "PENDING"
| "COMPLETED",
string & {} | "IN_PROGRESS" | "PENDING" | "COMPLETED",
>,
>;
},
$loose,
> = ...