UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

20 lines (19 loc) 772 B
import { Date } from '../internal/utils'; import { SerializedData } from '../serialization/json'; export interface SignRequestPrefillTag { /** * This references the ID of a specific tag contained in a file of the signature request. */ readonly documentTagId?: string | null; /** * Text prefill value. */ readonly textValue?: string | null; /** * Checkbox prefill value. */ readonly checkboxValue?: boolean | null; /** * Date prefill value. */ readonly dateValue?: Date | null; readonly rawData?: SerializedData; } export declare function serializeSignRequestPrefillTag(val: SignRequestPrefillTag): SerializedData; export declare function deserializeSignRequestPrefillTag(val: SerializedData): SignRequestPrefillTag;