CustomEntityTemplatesResponseDto Data Type

All the MEVEO API web service response must extend this class.

Implemented Interfaces
Serializable
Properties
name data type description
customEntityTemplate array of CustomEntityTemplateDto
Properties inherited from BaseResponse
actionStatus ActionStatus

Example

{
  "customEntityTemplate" : [ {
    "code" : "...",
    "name" : "...",
    "description" : "...",
    "field" : [ {
      "code" : "...",
      "description" : "...",
      "fieldType" : "LONG",
      "appliesTo" : "...",
      "defaultValue" : "...",
      "storageType" : "MAP",
      "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",
      "tags" : "..."
    }, {
      "code" : "...",
      "description" : "...",
      "fieldType" : "DOUBLE",
      "appliesTo" : "...",
      "defaultValue" : "...",
      "storageType" : "MAP",
      "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" : "STRING",
      "applicableOnEl" : "...",
      "matrixColumn" : [ { }, { } ],
      "fieldCode" : [ "...", "..." ],
      "indexType" : "INDEX",
      "tags" : "..."
    } ],
    "action" : [ {
      "code" : "...",
      "description" : "...",
      "appliesTo" : "...",
      "applicableOnEl" : "...",
      "label" : "...",
      "script" : { }
    }, {
      "code" : "...",
      "description" : "...",
      "appliesTo" : "...",
      "applicableOnEl" : "...",
      "label" : "...",
      "script" : { }
    } ]
  }, {
    "code" : "...",
    "name" : "...",
    "description" : "...",
    "field" : [ {
      "code" : "...",
      "description" : "...",
      "fieldType" : "STRING",
      "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" : "INDEX",
      "tags" : "..."
    }, {
      "code" : "...",
      "description" : "...",
      "fieldType" : "LIST",
      "appliesTo" : "...",
      "defaultValue" : "...",
      "storageType" : "MAP",
      "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" : "INDEX",
      "tags" : "..."
    } ],
    "action" : [ {
      "code" : "...",
      "description" : "...",
      "appliesTo" : "...",
      "applicableOnEl" : "...",
      "label" : "...",
      "script" : { }
    }, {
      "code" : "...",
      "description" : "...",
      "appliesTo" : "...",
      "applicableOnEl" : "...",
      "label" : "...",
      "script" : { }
    } ]
  } ],
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : "GENERIC_API_EXCEPTION",
    "message" : "..."
  }
}