File size: 444 Bytes
6150c79
 
 
 
 
 
 
 
 
 
9d33d07
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export interface PwWorkOrdersInterface {
    id: number;
    pw_id: number;
    number: number;
    location: string;
    portfolio_id: number;
    building_id: number;
    unit_id: number;
    status: string;
    assigned_vendors: string[];
}

export interface Column {
    index: string;
    dataType: string;
    label: string;
  }
  
export interface DataStructure {
    totalCount: number;
    columns: Column[];
    records: any[];
  }