Add A1 Policy Type/Policy Types logic from backend
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / interfaces / policy.types.ts
index b6ecce6..8bc5eb1 100644 (file)
 
 // Models of data used by the Policy Control
 
-export interface PolicyType {
+export interface PolicyTypeSchema {
   name: string;
-  schema: string;
   schemaObject: any;
 }
 
+export interface PolicyType {
+  policy_schema: any;
+}
+
+export interface PolicyTypes {
+  policytype_ids: any[];
+}
+
 export interface PolicyInstance {
   id: string;
   json: string;