boldsign
Version:
NodeJS client for boldsign
252 lines • 7.11 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentFormFields = void 0;
class DocumentFormFields {
static getAttributeTypeMap() {
return DocumentFormFields.attributeTypeMap;
}
}
exports.DocumentFormFields = DocumentFormFields;
DocumentFormFields.discriminator = undefined;
DocumentFormFields.attributeTypeMap = [
{
"name": "id",
"baseName": "id",
"type": "string"
},
{
"name": "formFieldId",
"baseName": "formFieldId",
"type": "string"
},
{
"name": "type",
"baseName": "type",
"type": "string"
},
{
"name": "value",
"baseName": "value",
"type": "string"
},
{
"name": "font",
"baseName": "font",
"type": "string"
},
{
"name": "isRequired",
"baseName": "isRequired",
"type": "boolean"
},
{
"name": "isReadOnly",
"baseName": "isReadOnly",
"type": "boolean"
},
{
"name": "lineHeight",
"baseName": "lineHeight",
"type": "number"
},
{
"name": "fontSize",
"baseName": "fontSize",
"type": "number"
},
{
"name": "fontColor",
"baseName": "fontColor",
"type": "string"
},
{
"name": "isUnderline",
"baseName": "isUnderline",
"type": "boolean"
},
{
"name": "isItalic",
"baseName": "isItalic",
"type": "boolean"
},
{
"name": "isBold",
"baseName": "isBold",
"type": "boolean"
},
{
"name": "groupName",
"baseName": "groupName",
"type": "string"
},
{
"name": "label",
"baseName": "label",
"type": "string"
},
{
"name": "placeholder",
"baseName": "placeholder",
"type": "string"
},
{
"name": "validationtype",
"baseName": "validationtype",
"type": "DocumentFormFields.ValidationtypeEnum"
},
{
"name": "validationCustomRegex",
"baseName": "validationCustomRegex",
"type": "string"
},
{
"name": "validationCustomRegexMessage",
"baseName": "validationCustomRegexMessage",
"type": "string"
},
{
"name": "dateFormat",
"baseName": "dateFormat",
"type": "string"
},
{
"name": "timeFormat",
"baseName": "timeFormat",
"type": "string"
},
{
"name": "imageInfo",
"baseName": "imageInfo",
"type": "ImageInfo"
},
{
"name": "attachmentInfo",
"baseName": "attachmentInfo",
"type": "AttachmentInfo"
},
{
"name": "fileInfo",
"baseName": "fileInfo",
"type": "FileInfo"
},
{
"name": "editableDateFieldSettings",
"baseName": "editableDateFieldSettings",
"type": "EditableDateFieldSettings"
},
{
"name": "hyperlinkText",
"baseName": "hyperlinkText",
"type": "string"
},
{
"name": "conditionalRules",
"baseName": "conditionalRules",
"type": "Array<ConditionalRule>"
},
{
"name": "bounds",
"baseName": "bounds",
"type": "Rectangle"
},
{
"name": "pageNumber",
"baseName": "pageNumber",
"type": "number"
},
{
"name": "dataSyncTag",
"baseName": "dataSyncTag",
"type": "string"
},
{
"name": "dropdownOptions",
"baseName": "dropdownOptions",
"type": "Array<string>"
},
{
"name": "textAlign",
"baseName": "textAlign",
"type": "DocumentFormFields.TextAlignEnum"
},
{
"name": "textDirection",
"baseName": "textDirection",
"type": "DocumentFormFields.TextDirectionEnum"
},
{
"name": "characterSpacing",
"baseName": "characterSpacing",
"type": "number"
},
{
"name": "backgroundHexColor",
"baseName": "backgroundHexColor",
"type": "string"
},
{
"name": "tabIndex",
"baseName": "tabIndex",
"type": "number"
},
{
"name": "formulaFieldSettings",
"baseName": "formulaFieldSettings",
"type": "FormulaFieldSettings"
},
{
"name": "resizeOption",
"baseName": "resizeOption",
"type": "DocumentFormFields.ResizeOptionEnum"
},
{
"name": "allowEditFormField",
"baseName": "allowEditFormField",
"type": "boolean"
},
{
"name": "allowDeleteFormField",
"baseName": "allowDeleteFormField",
"type": "boolean"
},
{
"name": "collaborationSettings",
"baseName": "collaborationSettings",
"type": "CollaborationSettings"
},
{
"name": "hidden",
"baseName": "hidden",
"type": "boolean"
}
];
(function (DocumentFormFields) {
let ValidationtypeEnum;
(function (ValidationtypeEnum) {
ValidationtypeEnum[ValidationtypeEnum["None"] = 'None'] = "None";
ValidationtypeEnum[ValidationtypeEnum["NumbersOnly"] = 'NumbersOnly'] = "NumbersOnly";
ValidationtypeEnum[ValidationtypeEnum["EmailAddress"] = 'EmailAddress'] = "EmailAddress";
ValidationtypeEnum[ValidationtypeEnum["Currency"] = 'Currency'] = "Currency";
ValidationtypeEnum[ValidationtypeEnum["CustomRegex"] = 'CustomRegex'] = "CustomRegex";
})(ValidationtypeEnum = DocumentFormFields.ValidationtypeEnum || (DocumentFormFields.ValidationtypeEnum = {}));
let TextAlignEnum;
(function (TextAlignEnum) {
TextAlignEnum[TextAlignEnum["Left"] = 'Left'] = "Left";
TextAlignEnum[TextAlignEnum["Center"] = 'Center'] = "Center";
TextAlignEnum[TextAlignEnum["Right"] = 'Right'] = "Right";
})(TextAlignEnum = DocumentFormFields.TextAlignEnum || (DocumentFormFields.TextAlignEnum = {}));
let TextDirectionEnum;
(function (TextDirectionEnum) {
TextDirectionEnum[TextDirectionEnum["Ltr"] = 'LTR'] = "Ltr";
TextDirectionEnum[TextDirectionEnum["Rtl"] = 'RTL'] = "Rtl";
})(TextDirectionEnum = DocumentFormFields.TextDirectionEnum || (DocumentFormFields.TextDirectionEnum = {}));
let ResizeOptionEnum;
(function (ResizeOptionEnum) {
ResizeOptionEnum[ResizeOptionEnum["GrowVertically"] = 'GrowVertically'] = "GrowVertically";
ResizeOptionEnum[ResizeOptionEnum["GrowHorizontally"] = 'GrowHorizontally'] = "GrowHorizontally";
ResizeOptionEnum[ResizeOptionEnum["GrowBoth"] = 'GrowBoth'] = "GrowBoth";
ResizeOptionEnum[ResizeOptionEnum["Fixed"] = 'Fixed'] = "Fixed";
ResizeOptionEnum[ResizeOptionEnum["AutoResizeFont"] = 'AutoResizeFont'] = "AutoResizeFont";
})(ResizeOptionEnum = DocumentFormFields.ResizeOptionEnum || (DocumentFormFields.ResizeOptionEnum = {}));
})(DocumentFormFields || (exports.DocumentFormFields = DocumentFormFields = {}));
//# sourceMappingURL=documentFormFields.js.map