X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fmodels%2FVNFDModel.ts;h=364d37e12b7d872da4903a011e224bc5ea317ff4;hb=509ed1c0d1d700122cb799671548cbd2384c9e07;hp=908f552227cec7e97c4cc66c7292570522c9339d;hpb=5abb274a18081867fc491fae432c2208d3ead2df;p=osm%2FNG-UI.git diff --git a/src/models/VNFDModel.ts b/src/models/VNFDModel.ts index 908f552..364d37e 100644 --- a/src/models/VNFDModel.ts +++ b/src/models/VNFDModel.ts @@ -93,6 +93,7 @@ export interface VNFDDetails { _admin: VNFDAdminDetails; 'short-name': string; vendor: string; + 'product-name'?: string; } /** Interface for MGMT */ @@ -213,12 +214,13 @@ interface Storage { export interface VNFData { name?: string; id?: string; - shortName: string; + shortName?: string; identifier: string; description: string; - vendor: string; + vendor?: string; version: string; 'type'?: string; + productName?: string; } /** Interface for the Tick */