/** * This is auto-generated file, don't modify this file manually */ export interface UsersSchool { /** * City ID */ city?: number; /** * School class letter */ class?: string; /** * School class id */ class_id?: number; /** * School ID */ id?: string; /** * School name */ name?: string; /** * School type ID */ type?: number; /** * School type name */ type_str?: string; /** * Year the user started to study */ year_from?: number; /** * Graduation year */ year_graduated?: number; /** * Year the user finished to study */ year_to?: number; speciality?: string; }