A field in the PDF document.
| name | data type | description |
|---|---|---|
| name | string | The name of the field. |
| type | string | A description of the field type. |
| userName | string | The field's user name. |
| widgetCount | number | The number of widgets associated with this field. |
| widget | array of WidgetModel | The widgets associated with this field. |
Example
{
"name" : "...",
"type" : "...",
"userName" : "...",
"widgetCount" : 12345,
"widget" : [ {
"rectangle" : {
"x" : 12345.0,
"y" : 12345.0,
"width" : 12345.0,
"height" : 12345.0
},
"pageIndex" : 12345
}, {
"rectangle" : {
"x" : 12345.0,
"y" : 12345.0,
"width" : 12345.0,
"height" : 12345.0
},
"pageIndex" : 12345
} ]
}