dify/web/gen/zod/models/error.ts
Stephen Zhou 4061c83b26
no sufix
2026-01-25 16:19:07 +08:00

12 lines
295 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
export const zErrorResponse = z.object({
status: z.number().int().optional(),
code: z.string().optional(),
message: z.string().optional(),
})
export type ErrorResponseZodType = z.infer<typeof zErrorResponse>