boldsign
Version:
NodeJS client for boldsign
208 lines • 6.38 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextTagDefinition = void 0;
class TextTagDefinition {
static getAttributeTypeMap() {
return TextTagDefinition.attributeTypeMap;
}
}
exports.TextTagDefinition = TextTagDefinition;
TextTagDefinition.discriminator = undefined;
TextTagDefinition.attributeTypeMap = [
{
"name": "definitionId",
"baseName": "definitionId",
"type": "string"
},
{
"name": "type",
"baseName": "type",
"type": "TextTagDefinition.TypeEnum"
},
{
"name": "signerIndex",
"baseName": "signerIndex",
"type": "number"
},
{
"name": "isRequired",
"baseName": "isRequired",
"type": "boolean"
},
{
"name": "placeholder",
"baseName": "placeholder",
"type": "string"
},
{
"name": "fieldId",
"baseName": "fieldId",
"type": "string"
},
{
"name": "font",
"baseName": "font",
"type": "Font"
},
{
"name": "validation",
"baseName": "validation",
"type": "Validation"
},
{
"name": "size",
"baseName": "size",
"type": "Size"
},
{
"name": "dateFormat",
"baseName": "dateFormat",
"type": "string"
},
{
"name": "timeFormat",
"baseName": "timeFormat",
"type": "string"
},
{
"name": "radioGroupName",
"baseName": "radioGroupName",
"type": "string"
},
{
"name": "groupName",
"baseName": "groupName",
"type": "string"
},
{
"name": "value",
"baseName": "value",
"type": "string"
},
{
"name": "dropdownOptions",
"baseName": "dropdownOptions",
"type": "Array<string>"
},
{
"name": "imageInfo",
"baseName": "imageInfo",
"type": "ImageInfo"
},
{
"name": "hyperlinkText",
"baseName": "hyperlinkText",
"type": "string"
},
{
"name": "attachmentInfo",
"baseName": "attachmentInfo",
"type": "AttachmentInfo"
},
{
"name": "backgroundHexColor",
"baseName": "backgroundHexColor",
"type": "string"
},
{
"name": "isReadOnly",
"baseName": "isReadOnly",
"type": "boolean"
},
{
"name": "offset",
"baseName": "offset",
"type": "TextTagOffset"
},
{
"name": "label",
"baseName": "label",
"type": "string"
},
{
"name": "tabIndex",
"baseName": "tabIndex",
"type": "number"
},
{
"name": "dataSyncTag",
"baseName": "dataSyncTag",
"type": "string"
},
{
"name": "textAlign",
"baseName": "textAlign",
"type": "TextTagDefinition.TextAlignEnum"
},
{
"name": "textDirection",
"baseName": "textDirection",
"type": "TextTagDefinition.TextDirectionEnum"
},
{
"name": "characterSpacing",
"baseName": "characterSpacing",
"type": "number"
},
{
"name": "characterLimit",
"baseName": "characterLimit",
"type": "number"
},
{
"name": "formulaFieldSettings",
"baseName": "formulaFieldSettings",
"type": "FormulaFieldSettings"
},
{
"name": "resizeOption",
"baseName": "resizeOption",
"type": "TextTagDefinition.ResizeOptionEnum"
},
{
"name": "collaborationSettings",
"baseName": "collaborationSettings",
"type": "CollaborationSettings"
}
];
(function (TextTagDefinition) {
let TypeEnum;
(function (TypeEnum) {
TypeEnum[TypeEnum["Signature"] = 'Signature'] = "Signature";
TypeEnum[TypeEnum["Initial"] = 'Initial'] = "Initial";
TypeEnum[TypeEnum["CheckBox"] = 'CheckBox'] = "CheckBox";
TypeEnum[TypeEnum["TextBox"] = 'TextBox'] = "TextBox";
TypeEnum[TypeEnum["Label"] = 'Label'] = "Label";
TypeEnum[TypeEnum["DateSigned"] = 'DateSigned'] = "DateSigned";
TypeEnum[TypeEnum["RadioButton"] = 'RadioButton'] = "RadioButton";
TypeEnum[TypeEnum["Image"] = 'Image'] = "Image";
TypeEnum[TypeEnum["Attachment"] = 'Attachment'] = "Attachment";
TypeEnum[TypeEnum["EditableDate"] = 'EditableDate'] = "EditableDate";
TypeEnum[TypeEnum["Hyperlink"] = 'Hyperlink'] = "Hyperlink";
TypeEnum[TypeEnum["Dropdown"] = 'Dropdown'] = "Dropdown";
TypeEnum[TypeEnum["Title"] = 'Title'] = "Title";
TypeEnum[TypeEnum["Company"] = 'Company'] = "Company";
TypeEnum[TypeEnum["Formula"] = 'Formula'] = "Formula";
})(TypeEnum = TextTagDefinition.TypeEnum || (TextTagDefinition.TypeEnum = {}));
let TextAlignEnum;
(function (TextAlignEnum) {
TextAlignEnum[TextAlignEnum["Left"] = 'Left'] = "Left";
TextAlignEnum[TextAlignEnum["Center"] = 'Center'] = "Center";
TextAlignEnum[TextAlignEnum["Right"] = 'Right'] = "Right";
})(TextAlignEnum = TextTagDefinition.TextAlignEnum || (TextTagDefinition.TextAlignEnum = {}));
let TextDirectionEnum;
(function (TextDirectionEnum) {
TextDirectionEnum[TextDirectionEnum["Ltr"] = 'LTR'] = "Ltr";
TextDirectionEnum[TextDirectionEnum["Rtl"] = 'RTL'] = "Rtl";
})(TextDirectionEnum = TextTagDefinition.TextDirectionEnum || (TextTagDefinition.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[ResizeOptionEnum["Null"] = 'null'] = "Null";
})(ResizeOptionEnum = TextTagDefinition.ResizeOptionEnum || (TextTagDefinition.ResizeOptionEnum = {}));
})(TextTagDefinition || (exports.TextTagDefinition = TextTagDefinition = {}));
//# sourceMappingURL=textTagDefinition.js.map