The class representing the saved kery
| name | data type | description |
|---|---|---|
| id | number | ID of the saved kery (unique) |
| name | string | Name of the saved kery |
| description | string | Description of the saved kery |
| kery | string | The actual kery. Should adhere to HQL syntax |
| parameters | array of array of Parameter | Parameters that are used in the kery |
Example
{
"id" : 12345,
"name" : "...",
"description" : "...",
"kery" : "...",
"parameters" : [ [ {
"name" : "...",
"displayName" : "...",
"defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
"dataType" : "NUMBER",
"collectionType" : "SINGLE"
}, {
"name" : "...",
"displayName" : "...",
"defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
"dataType" : "NUMBER",
"collectionType" : "MULTIPLE"
} ], [ {
"name" : "...",
"displayName" : "...",
"defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
"dataType" : "BOOLEAN",
"collectionType" : "MULTIPLE"
}, {
"name" : "...",
"displayName" : "...",
"defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
"dataType" : "BOOLEAN",
"collectionType" : "SINGLE"
} ] ]
}