UNPKG

@docusign/iam-sdk

Version:

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

21 lines 799 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Properties about THIS request/response, not the job resource itself */ export type BulkJobMetadata = { requestId?: string | undefined; /** * When this response was generated */ responseTimestamp?: Date | undefined; /** * Time in ms to process this request */ responseDuration?: number | undefined; }; /** @internal */ export declare const BulkJobMetadata$inboundSchema: z.ZodType<BulkJobMetadata, z.ZodTypeDef, unknown>; export declare function bulkJobMetadataFromJSON(jsonString: string): SafeParseResult<BulkJobMetadata, SDKValidationError>; //# sourceMappingURL=bulkjobmetadata.d.ts.map