CoolFace
Apppublic

sifars/automated-invoice-processing-agent-backend

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
pwWorkOrdersInterface.ts24 linesDownload Raw Back to interfaces
1export interface PwWorkOrdersInterface {2    id: number;3    pw_id: number;4    number: number;5    location: string;6    portfolio_id: number;7    building_id: number;8    unit_id: number;9    status: string;10    assigned_vendors: string[];11}12 13export interface Column {14    index: string;15    dataType: string;16    label: string;17  }18  19export interface DataStructure {20    totalCount: number;21    columns: Column[];22    records: any[];23  }24