/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: b15cbd0e5275 */ import * as z from "zod/v4"; export type RevokeWorkspaceInviteLinkGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type RevokeWorkspaceInviteLinkRequest = { /** * Unique identifier for the workspace. */ id: string; }; /** @internal */ export type RevokeWorkspaceInviteLinkRequest$Outbound = { id: string; }; /** @internal */ export const RevokeWorkspaceInviteLinkRequest$outboundSchema: z.ZodType< RevokeWorkspaceInviteLinkRequest$Outbound, RevokeWorkspaceInviteLinkRequest > = z.object({ id: z.string(), }); export function revokeWorkspaceInviteLinkRequestToJSON( revokeWorkspaceInviteLinkRequest: RevokeWorkspaceInviteLinkRequest, ): string { return JSON.stringify( RevokeWorkspaceInviteLinkRequest$outboundSchema.parse( revokeWorkspaceInviteLinkRequest, ), ); }