diff --git a/gradle.properties b/gradle.properties index 2e0c123..ab991d9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version = 1.9.28 +version = 1.9.29 group = com.cabolabs \ No newline at end of file diff --git a/src/main/groovy/com/cabolabs/openehr/opt/model/OperationalTemplateSummary.groovy b/src/main/groovy/com/cabolabs/openehr/opt/model/OperationalTemplateSummary.groovy new file mode 100644 index 0000000..49e9e97 --- /dev/null +++ b/src/main/groovy/com/cabolabs/openehr/opt/model/OperationalTemplateSummary.groovy @@ -0,0 +1,16 @@ +package com.cabolabs.openehr.opt.model + +/** + * This class is used to represent the output of the API when listing templates, + * it just includes basic information about the template. + */ +class OperationalTemplateSummary { + + String templateId + String concept + String archetypeId + String created_timestamp + String language + String semver + String uid +} \ No newline at end of file