src/app/modules/shared/interfaces/framework.ts
Properties |
code |
code:
|
Type : string
|
description |
description:
|
Type : string
|
identifier |
identifier:
|
Type : string
|
index |
index:
|
Type : number
|
name |
name:
|
Type : string
|
status |
status:
|
Type : string
|
terms |
terms:
|
Type : Array<TermsData>
|
import { ServerResponse } from './serverResponse';
export interface Framework {
err: ServerResponse;
frameworkdata: FrameworkData;
}
export interface FrameworkData {
[keys: string]: FrameworkCategories | any;
}
export interface FrameworkCategories {
code: string;
description: string;
identifier: string;
name: string;
objectType: string;
type: string;
Categories: Array<CategoriesData>;
}
export interface CategoriesData {
code: string;
description: string;
identifier: string;
index: number;
name: string;
status: string;
terms: Array<TermsData>;
}
export interface TermsData {
associations: Array<AssociationsData>;
category: string;
code: string;
description: string;
identifier: string;
index: string;
name: string;
status: string;
}
export interface AssociationsData {
category: string;
code: string;
description: string;
identifier: string;
index: string;
name: string;
status: string;
}