Bansari Akhani
#8641 - sync workorders from json url, remove sync from PW api
9d33d07
raw
history blame contribute delete
444 Bytes
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[];
}