Interface UsersOccupation

interface UsersOccupation {
    city_id: number;
    country_id: number;
    graduate_year: number;
    id: number;
    name: string;
    type: "work" | "school" | "university";
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

city_id: number
country_id: number
graduate_year: number
id: number

ID of school, university, company group

name: string

Name of occupation

type: "work" | "school" | "university"

Type of occupation

Generated using TypeDoc