UNPKG

@docusign/iam-sdk

Version:

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

16 lines 760 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes the limits of a bulk job, or an action associated with a bulk job */ export type BulkJobConstraints = { maxSizeMb?: number | undefined; maxDocumentsPerJob?: number | undefined; allowedFormats?: Array<string> | undefined; timeoutSeconds?: number | undefined; }; /** @internal */ export declare const BulkJobConstraints$inboundSchema: z.ZodType<BulkJobConstraints, z.ZodTypeDef, unknown>; export declare function bulkJobConstraintsFromJSON(jsonString: string): SafeParseResult<BulkJobConstraints, SDKValidationError>; //# sourceMappingURL=bulkjobconstraints.d.ts.map