All attachments in the PDF Document.
| name | data type | description |
|---|---|---|
| attachments | array of AttachmentModel | A list of all attachments in the document. |
| link | LinkModel | Link to the attachments. |
Example
{
"attachments" : [ {
"fileName" : "...",
"size" : 12345,
"creationDate" : 12345,
"modDate" : 12345,
"description" : "...",
"relationship" : "...",
"link" : {
"rel" : "...",
"href" : "..."
},
"content" : {
"rel" : "...",
"href" : "..."
}
}, {
"fileName" : "...",
"size" : 12345,
"creationDate" : 12345,
"modDate" : 12345,
"description" : "...",
"relationship" : "...",
"link" : {
"rel" : "...",
"href" : "..."
},
"content" : {
"rel" : "...",
"href" : "..."
}
} ],
"link" : {
"rel" : "...",
"href" : "..."
}
}