UNPKG

@docusign/iam-sdk

Version:

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

36 lines 1.14 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The summary of the envelope in the workspace */ export type WorkspaceEnvelopeSummary = { /** * The ID of the envelope */ envelopeId: string | null; /** * The status of the envelope in the workspace */ status: string | null; /** * The envelope name */ name?: string | null | undefined; /** * The envelope subject */ subject?: string | null | undefined; /** * The date the envelope was created */ createdDate?: Date | null | undefined; /** * The date the envelope was last updated */ lastUpdatedDate?: Date | null | undefined; }; /** @internal */ export declare const WorkspaceEnvelopeSummary$inboundSchema: z.ZodType<WorkspaceEnvelopeSummary, z.ZodTypeDef, unknown>; export declare function workspaceEnvelopeSummaryFromJSON(jsonString: string): SafeParseResult<WorkspaceEnvelopeSummary, SDKValidationError>; //# sourceMappingURL=workspaceenvelopesummary.d.ts.map