export type DestinationItinerary = {
  id: string | null;
  content_id: number;
  name: string;
  available_from: string | null;
  available_to: string | null;
  max_bookable_units: number;
  comment: string | null;
  is_active: boolean | null;
  is_deleted: boolean | null;
};

export type ItineraryUnit = {
  id: string;
  itinerary_id: string;
  unit_code: string;
  unit_id: string;
  is_active: boolean;
  is_reservation_allowed: boolean;
  created_at: string;
  updated_at: string | null;
};
