src/api/webApi/data/distributionLevel.interface.ts
Properties |
children |
children:
|
Type : Array<DistributionLevel>
|
Optional |
count |
count:
|
Type : number
|
Optional |
distId |
distId:
|
Type : string
|
Optional |
id |
id:
|
Type : number
|
level |
level:
|
Type : number
|
Optional |
parentName |
parentName:
|
Type : string
|
Optional |
value |
value:
|
Type : string
|
export interface DistributionLevel {
id: number;
value: string;
children?: Array<DistributionLevel>;
count?: number;
level?: number;
distId?: string;
parentName?: string;
}