/**
 * Generated by orval v8.23.0 🍺
 * Do not edit manually.
 * Api
 * API operativa de Y.E. Transport & Constructors
 * OpenAPI spec version: 1.0.0
 */
import type { EquipmentStatus } from './equipmentStatus';

export interface Equipment {
  id: string;
  assetNumber: string;
  name: string;
  category: string;
  status: EquipmentStatus;
  location: string;
  nextMaintenance: Date;
  /** @nullable */
  hourlyRate?: number | null;
}
