/** * This is auto-generated file, don't modify this file manually */ export interface UsersOccupation { /** * ID of school, university, company group */ id?: number; /** * Name of occupation */ name?: string; /** * Type of occupation */ type?: 'school' | 'university' | 'work'; graduate_year?: number; city_id?: number; }