/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: d820256ef5c9 */ import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * Result of the deletion operation. */ export const DestroyResponseResult = { Ok: "ok", NotFound: "not found", } as const; /** * Result of the deletion operation. */ export type DestroyResponseResult = ClosedEnum; export const DestroyResponseResult$zodSchema = z.enum([ "ok", "not found", ]).describe("Result of the deletion operation."); export type DestroyResponse = { result?: DestroyResponseResult | undefined }; export const DestroyResponse$zodSchema: z.ZodType = z.object({ result: DestroyResponseResult$zodSchema.optional().describe( "Result of the deletion operation.", ), });