/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 4902ca159289 */ import * as z from "zod/v3"; export type Unpin = { /** * The opaque id of the pin to be unpinned. */ id?: string | undefined; }; /** @internal */ export type Unpin$Outbound = { id?: string | undefined; }; /** @internal */ export const Unpin$outboundSchema: z.ZodType< Unpin$Outbound, z.ZodTypeDef, Unpin > = z.object({ id: z.string().optional(), }); export function unpinToJSON(unpin: Unpin): string { return JSON.stringify(Unpin$outboundSchema.parse(unpin)); }