import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WorkspaceRoleSummary = { /** * The ID of the role */ roleId?: string | undefined; /** * The name of the role */ name?: string | null | undefined; /** * If this role is applicable to any participant of a workspace including those outside the account. If false, this role may only be assigned to internal users of the same account */ isExternal?: boolean | null | undefined; /** * The date the role was created */ createdDate?: Date | null | undefined; }; /** @internal */ export declare const WorkspaceRoleSummary$inboundSchema: z.ZodType; export declare function workspaceRoleSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workspacerolesummary.d.ts.map