import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateWorkspaceResponse = { /** * The ID of the workspace */ workspaceId?: string | undefined; /** * The name of the workspace */ name?: string | null | undefined; /** * The date the workspace was created */ createdDate?: Date | null | undefined; /** * The ID of the user who created the workspace */ createdByUserId?: string | null | undefined; /** * The list of user IDs of the workspace owners */ workspaceOwnerIds?: Array | null | undefined; }; /** @internal */ export declare const CreateWorkspaceResponse$inboundSchema: z.ZodType; export declare function createWorkspaceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createworkspaceresponse.d.ts.map