/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 76f27f5d800f */ import * as z from "zod/v3"; /** * Describes the request body of the /deleteteam API call */ export type DeleteTeamRequest = { /** * The deleted team's id */ id: string; }; /** @internal */ export type DeleteTeamRequest$Outbound = { id: string; }; /** @internal */ export const DeleteTeamRequest$outboundSchema: z.ZodType< DeleteTeamRequest$Outbound, z.ZodTypeDef, DeleteTeamRequest > = z.object({ id: z.string(), }); export function deleteTeamRequestToJSON( deleteTeamRequest: DeleteTeamRequest, ): string { return JSON.stringify( DeleteTeamRequest$outboundSchema.parse(deleteTeamRequest), ); }