All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| scriptInstance | ScriptInstanceDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"scriptInstance" : {
"executionRoles" : [ {
"name" : "...",
"description" : "...",
"permission" : [ { }, { } ],
"role" : [ { }, { } ]
}, {
"name" : "...",
"description" : "...",
"permission" : [ { }, { } ],
"role" : [ { }, { } ]
} ],
"sourcingRoles" : [ {
"name" : "...",
"description" : "...",
"permission" : [ { }, { } ],
"role" : [ { }, { } ]
}, {
"name" : "...",
"description" : "...",
"permission" : [ { }, { } ],
"role" : [ { }, { } ]
} ],
"code" : "...",
"description" : "...",
"type" : "JAVA",
"script" : "..."
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "AUTHENTICATION_AUTHORIZATION_EXCEPTION",
"message" : "..."
}
}