X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=webapp-frontend%2Fsrc%2Fapp%2Finterfaces%2Fpolicy.types.ts;h=9688a23de2e4afc96d3dd2e4672a23f6e74ae68b;hb=refs%2Fchanges%2F09%2F5509%2F3;hp=8bc5eb1a62d05ac41cdd2e06379bf804e74e745b;hpb=e409ac955e6f0654f1721c69e1885bda23e1cf99;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/src/app/interfaces/policy.types.ts b/webapp-frontend/src/app/interfaces/policy.types.ts index 8bc5eb1..9688a23 100644 --- a/webapp-frontend/src/app/interfaces/policy.types.ts +++ b/webapp-frontend/src/app/interfaces/policy.types.ts @@ -21,6 +21,7 @@ // Models of data used by the Policy Control export interface PolicyTypeSchema { + id: string; name: string; schemaObject: any; } @@ -33,13 +34,20 @@ export interface PolicyTypes { policytype_ids: any[]; } +export interface PolicyInstances { + policy_ids: any[]; +} + export interface PolicyInstance { - id: string; - json: string; - ric: string; - service: string; + policy_id: string; + policy_data: string; + ric_id: string; + service_id: string; lastModified: string; } +export interface PolicyStatus { + last_modified: string; +} export interface PolicyInstanceAck { status: string;