/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 9e18ca69ff50 */ import * as z from "zod/v4"; export type GetDomainGlobals = { /** * 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 GetDomainRequest = { /** * Unique identifier for the domain. */ id: string; }; /** @internal */ export type GetDomainRequest$Outbound = { id: string; }; /** @internal */ export const GetDomainRequest$outboundSchema: z.ZodType< GetDomainRequest$Outbound, GetDomainRequest > = z.object({ id: z.string(), }); export function getDomainRequestToJSON( getDomainRequest: GetDomainRequest, ): string { return JSON.stringify( GetDomainRequest$outboundSchema.parse(getDomainRequest), ); }