re base code
[sdc.git] / catalog-ui / src / app / models / policy-metadata.ts
1 export class PolicyMetadata {
2     public uniqueId: string;
3     public name:string;
4     public icon:string;
5     public type: string;
6     public version: string;
7     public description: string;
8     public creationTime: number;
9     public modificationTime: number;
10     public highestVersion: boolean;
11     public empty: boolean;
12
13     deserialize (response): PolicyMetadata {
14         this.uniqueId = response.uniqueId;
15         this.type = response.type;
16         this.name = response.name;
17         this.icon = response.icon;
18         this.version = response.version;
19         this.description = response.description;
20         this.creationTime = response.creationTime;
21         this.modificationTime = response.modificationTime;
22         this.highestVersion = response.highestVersion;
23         this.empty = response.empty;
24
25         return this;
26     }
27 }
28
29 export interface PolicyTpes {
30     policyTypes: Array<PolicyMetadata>;
31     excludeMapping: ExcludedPolicyTypes;
32 }
33
34 export interface ExcludedPolicyTypes {
35     componentType: string;
36     excludedPolicyTypes: Array<string>;
37 }