Response for request to render a page
| name | data type | description |
|---|---|---|
| content | string | Get the content |
| properties | map of string | Get the properties |
| array of Tag | Get the tags | |
| metaeditables | array of MetaEditable | Get the meta editables |
| time | number | Rrender time in milliseconds |
| inheritedContent | string | Get inheritedContent |
| inheritedProperties | map of string | Get inheritedProperties |
Properties inherited from GenericResponse |
||
| messages | array of Message | Messages contained in the response (which should be shown to the user) |
| responseInfo | ResponseInfo | |
Example
{
"content" : "...",
"properties" : {
"property1" : "...",
"property2" : "..."
},
"tags" : [ {
"element" : "...",
"tagname" : "...",
"onlyeditables" : true,
"editables" : [ {
"element" : "...",
"partname" : "...",
"readonly" : true
}, {
"element" : "...",
"partname" : "...",
"readonly" : true
} ]
}, {
"element" : "...",
"tagname" : "...",
"onlyeditables" : true,
"editables" : [ {
"element" : "...",
"partname" : "...",
"readonly" : true
}, {
"element" : "...",
"partname" : "...",
"readonly" : true
} ]
} ],
"metaeditables" : [ {
"element" : "...",
"metaproperty" : "..."
}, {
"element" : "...",
"metaproperty" : "..."
} ],
"time" : 12345,
"inheritedContent" : "...",
"inheritedProperties" : {
"property1" : "...",
"property2" : "..."
},
"messages" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
}