AbstractTemplate Data Type

Abstract Type
Implemented Interfaces
TemplateInterface
Properties
name data type constraints description
id string  
dateCreated number  
description string  
parentId string  
clientId string  
dateModified number  
templateAttributeCollection array of TemplateAttributeInterface  
name string  
active boolean required

Example

{
  "id" : "...",
  "dateCreated" : 12345,
  "description" : "...",
  "parentId" : "...",
  "dateModified" : 12345,
  "templateAttributeCollection" : [ {
    "templateAttributeDefinition" : {
      "type" : "BIG_DECIMAL",
      "description" : "...",
      "attributeName" : "..."
    },
    "template" : {
      "active" : true,
      "description" : "...",
      "templateAttributeCollection" : [ { }, { } ]
    },
    "attributeValue" : "..."
  }, {
    "templateAttributeDefinition" : {
      "type" : "UUID",
      "description" : "...",
      "attributeName" : "..."
    },
    "template" : {
      "active" : true,
      "description" : "...",
      "templateAttributeCollection" : [ { }, { } ]
    },
    "attributeValue" : "..."
  } ],
  "name" : "...",
  "active" : true
}