All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| entityCustomization | EntityCustomizationDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"entityCustomization" : {
"classname" : "...",
"field" : [ {
"code" : "...",
"description" : "...",
"fieldType" : "STRING",
"appliesTo" : "...",
"defaultValue" : "...",
"storageType" : "MATRIX",
"valueRequired" : true,
"versionable" : true,
"triggerEndPeriodEvent" : true,
"calendar" : "...",
"cacheValueTimeperiod" : 12345,
"entityClazz" : "...",
"listValues" : {
"property1" : "...",
"property2" : "..."
},
"allowEdit" : true,
"hideOnNew" : true,
"maxValue" : 12345,
"minValue" : 12345,
"regExp" : "...",
"cacheValue" : true,
"guiPosition" : "...",
"mapKeyType" : "RON",
"applicableOnEl" : "...",
"matrixColumn" : [ { }, { } ],
"fieldCode" : [ "...", "..." ],
"indexType" : "STORE_ONLY"
}, {
"code" : "...",
"description" : "...",
"fieldType" : "ENTITY",
"appliesTo" : "...",
"defaultValue" : "...",
"storageType" : "SINGLE",
"valueRequired" : true,
"versionable" : true,
"triggerEndPeriodEvent" : true,
"calendar" : "...",
"cacheValueTimeperiod" : 12345,
"entityClazz" : "...",
"listValues" : {
"property1" : "...",
"property2" : "..."
},
"allowEdit" : true,
"hideOnNew" : true,
"maxValue" : 12345,
"minValue" : 12345,
"regExp" : "...",
"cacheValue" : true,
"guiPosition" : "...",
"mapKeyType" : "RON",
"applicableOnEl" : "...",
"matrixColumn" : [ { }, { } ],
"fieldCode" : [ "...", "..." ],
"indexType" : "STORE_ONLY"
} ],
"action" : [ {
"code" : "...",
"description" : "...",
"appliesTo" : "...",
"applicableOnEl" : "...",
"label" : "...",
"script" : { }
}, {
"code" : "...",
"description" : "...",
"appliesTo" : "...",
"applicableOnEl" : "...",
"label" : "...",
"script" : { }
} ]
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "BUSINESS_API_EXCEPTION",
"message" : "..."
}
}