aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/mapping-models/definitions/VlbDefinition.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/mapping-models/definitions/VlbDefinition.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/mapping-models/definitions/VlbDefinition.ts24
1 files changed, 19 insertions, 5 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/mapping-models/definitions/VlbDefinition.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/mapping-models/definitions/VlbDefinition.ts
index 5c59404c2..2d5e520ee 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/mapping-models/definitions/VlbDefinition.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/mapping-models/definitions/VlbDefinition.ts
@@ -1,4 +1,5 @@
-import {JsonObject, JsonProperty} from 'json2typescript';
+import {Any, JsonObject, JsonProperty} from 'json2typescript';
+
@JsonObject
export class VlbDefinition {
@@ -11,17 +12,30 @@ export class VlbDefinition {
// topology_template: TopologyTemplate;
}
+@JsonObject('metadata')
export class Metadata {
@JsonProperty('template_author')
- templateAuthor: string;
+ // tslint:disable-next-line:variable-name
+ template_author: string;
'author-email': string;
'user-groups': string;
@JsonProperty('template_name')
- templateName: string;
+ // tslint:disable-next-line:variable-name
+ template_name: string;
@JsonProperty('template_version')
- templateVersion: string;
+ // tslint:disable-next-line:variable-name
+ template_version: string;
@JsonProperty('template_tag')
- templateTags: string;
+ // tslint:disable-next-line:variable-name
+ template_tags: string;
+
+ @JsonProperty('dictionary_group')
+ // tslint:disable-next-line:variable-name
+ dictionary_group: string;
+
+
+ /* @JsonProperty('custom_keys', {String}, false)
+ mapOfCustomKeys: Map<string, string> = new Map<string, string>();*/
}
export class Import {