// Une bouteille de gaz telle que renvoyee par /api/mobile/bottles.php
// (format BouteilleGazResponseHelper::formatBouteilleRow cote backend).
// Les dates sont des chaines pre-formatees FR ("d/m/Y H:i") ou vides.
export type MobileBottle = {
  id: number;
  code_interne: string;
  type: string; // 'gaz' | 'recup' | 'transf'
  statut: string; // 'commandee' | 'en_service' | 'retour_demande'
  numero_serie_fournisseur?: string;
  date_commande?: string;
  date_reception?: string;
  date_demande_retour?: string;
  date_retour?: string;
};

export type BottlesPayload = {
  bottles: MobileBottle[];
  count: number;
  quota: number;
  technicien_id: number;
};
