/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 0d28c77dc6c5 */ import * as z from "zod/v3"; export type DeleteShortcutRequest = { /** * The opaque id of the user generated content. */ id: number; }; /** @internal */ export type DeleteShortcutRequest$Outbound = { id: number; }; /** @internal */ export const DeleteShortcutRequest$outboundSchema: z.ZodType< DeleteShortcutRequest$Outbound, z.ZodTypeDef, DeleteShortcutRequest > = z.object({ id: z.number().int(), }); export function deleteShortcutRequestToJSON( deleteShortcutRequest: DeleteShortcutRequest, ): string { return JSON.stringify( DeleteShortcutRequest$outboundSchema.parse(deleteShortcutRequest), ); }