| 1 | // maps to webapp/backend/pkg/models/device.go |
| 2 | export interface DeviceModel { |
| 3 | archived?: boolean; |
| 4 | scrutiny_uuid: string; |
| 5 | wwn: string; |
| 6 | device_name?: string; |
| 7 | device_uuid?: string; |
| 8 | device_serial_id?: string; |
| 9 | device_label?: string; |
| 10 | |
| 11 | manufacturer: string; |
| 12 | model_name: string; |
| 13 | interface_type: string; |
| 14 | interface_speed: string; |
| 15 | serial_number: string; |
| 16 | firmware: string; |
| 17 | rotational_speed: number; |
| 18 | capacity: number; |
| 19 | form_factor: string; |
| 20 | smart_support: boolean; |
| 21 | device_protocol: string; |
| 22 | device_type: string; |
| 23 | |
| 24 | label: string; |
| 25 | host_id: string; |
| 26 | |
| 27 | device_status: number; |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected