@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
25 lines • 874 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type WorkspaceSummary = {
/**
* 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 | undefined;
};
/** @internal */
export declare const WorkspaceSummary$inboundSchema: z.ZodType<WorkspaceSummary, z.ZodTypeDef, unknown>;
export declare function workspaceSummaryFromJSON(jsonString: string): SafeParseResult<WorkspaceSummary, SDKValidationError>;
//# sourceMappingURL=workspacesummary.d.ts.map