@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
32 lines • 1.08 kB
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
/**
* The details of a single workspace
*/
export type UpdateWorkspaceResponse = {
/**
* The ID of the workspace
*/
workspaceId: string;
/**
* 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<string> | null | undefined;
};
/** @internal */
export declare const UpdateWorkspaceResponse$inboundSchema: z.ZodType<UpdateWorkspaceResponse, z.ZodTypeDef, unknown>;
export declare function updateWorkspaceResponseFromJSON(jsonString: string): SafeParseResult<UpdateWorkspaceResponse, SDKValidationError>;
//# sourceMappingURL=updateworkspaceresponse.d.ts.map