@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
32 lines • 1.06 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 GetWorkspaceResponse = {
/**
* 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 GetWorkspaceResponse$inboundSchema: z.ZodType<GetWorkspaceResponse, z.ZodTypeDef, unknown>;
export declare function getWorkspaceResponseFromJSON(jsonString: string): SafeParseResult<GetWorkspaceResponse, SDKValidationError>;
//# sourceMappingURL=getworkspaceresponse.d.ts.map