/**
 * Generated by orval v8.23.0 🍺
 * Do not edit manually.
 * Api
 * API specification
 * OpenAPI spec version: 0.1.0
 */
import type { Attribute } from './attribute';

export interface ShelterActivity {
  id: number;
  title: string;
  partner: string;
  governorate: string;
  district: string;
  status: string;
  source: string;
  activityType: string;
  latitude: number;
  longitude: number;
  households: number;
  people: number;
  updatedAt: string;
  details?: Attribute[];
}
