Variable: AsyncScanResponseSchema
const AsyncScanResponseSchema: ZodObject<{
received: ZodString;
scan_id: ZodString;
report_id: ZodOptional<ZodString>;
source: ZodOptional<ZodString>;
}, "passthrough", ZodTypeAny, objectOutputType<{
received: ZodString;
scan_id: ZodString;
report_id: ZodOptional<ZodString>;
source: ZodOptional<ZodString>;
}, ZodTypeAny, "passthrough">, objectInputType<{
received: ZodString;
scan_id: ZodString;
report_id: ZodOptional<ZodString>;
source: ZodOptional<ZodString>;
}, ZodTypeAny, "passthrough">>;
Defined in: src/models/async-scan.ts:16
Zod schema for the async scan API response.