asyncOperation element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<asyncOperation>
<id>...</id>
<operation>...</operation>
<filePath>...</filePath>
<status>...</status>
<result>
<entry>
<key>...</key>
<value>
<!--custom xml-->
</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'anyType' type)-->
</value>
</entry>
<!--...more entries...-->
</result>
<errorMsg>...</errorMsg>
<customAttributes>
<transferMode>...</transferMode>
</customAttributes>
<metadata>
<links />
</metadata>
</asyncOperation>
Example JSON
{
"id" : "...",
"operation" : "...",
"filePath" : "...",
"status" : "...",
"result" : [ {
"..." : ...
}, {
} ],
"errorMsg" : "...",
"customAttributes" : {
"transferMode" : "..."
},
"metadata" : {
"links" : {
}
}
}