create dictionary resource from metadata tab
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / resource-dictionary / model / metaData.model.ts
1 import { JsonObject, JsonProperty } from 'json2typescript';
2
3 /*
4 * ============LICENSE_START=======================================================
5 * ONAP : CDS
6 * ================================================================================
7 * Copyright (C) 2020 TechMahindra
8 *=================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 *     http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 */
22 @JsonObject()
23 export class MetaData {
24     @JsonProperty('name')
25     public name: string;
26     public tags: string;
27     @JsonProperty('updated-by')
28     public updatedBy: string;
29     public property: Property;
30     public sources: any;
31
32     constructor() {
33         this.name = '';
34         this.tags = '';
35         this.updatedBy = '';
36         this.property = new Property();
37         this.sources = {};
38     }
39 }
40
41 @JsonObject()
42 export class Property {
43     public description: string;
44     type: string;
45     required: boolean;
46     @JsonProperty('entry_schema')
47     // tslint:disable-next-line: variable-name
48     entry_schema: EntrySchema = new EntrySchema();
49
50     constructor() {
51         this.description = '';
52         this.type = '';
53         this.entry_schema = new EntrySchema();
54         this.required = false;
55     }
56
57 }
58 @JsonObject()
59 export class EntrySchema {
60     type: string;
61     constraints: [];
62     constructor() {
63         this.type = '';
64         this.constraints = [];
65     }
66 }