UNPKG

@docusign/iam-sdk

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.

20 lines 805 B
import * as z from "zod/v3"; export type CreateWorkspaceBody = { /** * The name of the workspace */ name: string | null; /** * A GUID value that identifies a brand. For more information, see <a href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/branding/">Branding</a> */ brandId?: string | null | undefined; }; /** @internal */ export type CreateWorkspaceBody$Outbound = { name: string | null; brand_id?: string | null | undefined; }; /** @internal */ export declare const CreateWorkspaceBody$outboundSchema: z.ZodType<CreateWorkspaceBody$Outbound, z.ZodTypeDef, CreateWorkspaceBody>; export declare function createWorkspaceBodyToJSON(createWorkspaceBody: CreateWorkspaceBody): string; //# sourceMappingURL=createworkspacebody.d.ts.map