When feature toggle is active then SDNC preload files is enable.
[vid.git] / vid-webpack-master / cypress / support / jsonBuilders / models / service.model.ts
1 /// <reference types="Cypress" />
2
3 export class ServiceModel{
4   service: {
5     uuid: string;
6     invariantUuid: string;
7     name: string;
8     version: string;
9     toscaModelURL: string;
10     category: string;
11     serviceType: string;
12     serviceRole: string;
13     description: string;
14     serviceEcompNaming : string;
15     instantiationType: string;
16     inputs: Object;
17   };
18   vnfs: Object;
19   networks: Object;
20   collectionResource: Object;
21   configurations: Object;
22   serviceProxies: Object;
23   vfModules: Object;
24   volumeGroups: Object;
25   pnfs:Object;
26   vnfGroups: Object;
27
28   constructor(){
29     this.service = <any>{};
30     this.vnfs = {};
31     this.networks= {};
32     this.collectionResource = {};
33     this.configurations = {};
34     this.serviceProxies = {};
35     this.vfModules = {};
36     this.volumeGroups = {};
37     this.pnfs = {};
38     this.vnfGroups = {};
39   }
40
41 }