UNPKG

@docusign/iam-sdk

Version:

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

17 lines 731 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WorkspaceDocumentOwner = { /** * The first name of the document owner */ firstName?: string | null | undefined; /** * The last name of the document owner */ lastName?: string | null | undefined; }; /** @internal */ export declare const WorkspaceDocumentOwner$inboundSchema: z.ZodType<WorkspaceDocumentOwner, z.ZodTypeDef, unknown>; export declare function workspaceDocumentOwnerFromJSON(jsonString: string): SafeParseResult<WorkspaceDocumentOwner, SDKValidationError>; //# sourceMappingURL=workspacedocumentowner.d.ts.map