UNPKG

@docusign/iam-sdk

Version:

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

31 lines 1.07 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TabExtensionData } from "./tabextensiondata.js"; export type Tab = { extensionData: TabExtensionData; /** * Indicates the type of tab */ tabType: string; /** * A regular expression used to validate input for the tab. */ validationPattern?: string | undefined; /** * The message displayed if the custom tab fails input validation */ validationMessage?: string | undefined; /** * The label associated to a verification field in a document. */ tabLabel: string; /** * The radio button properties for the tab (if the tab is of radio type) */ radios?: Array<string> | undefined; }; /** @internal */ export declare const Tab$inboundSchema: z.ZodType<Tab, z.ZodTypeDef, unknown>; export declare function tabFromJSON(jsonString: string): SafeParseResult<Tab, SDKValidationError>; //# sourceMappingURL=tab.d.ts.map