Interface UsersSchool

interface UsersSchool {
    city: number;
    class: string;
    class_id: number;
    country: number;
    id: string;
    name: string;
    speciality: string;
    type: number;
    type_str: string;
    year_from: number;
    year_graduated: number;
    year_to: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

city: number

City ID

class: string

School class letter

class_id: number

School class id

country: number

Country ID

id: string

School ID

name: string

School name

speciality: string
type: number

School type ID

type_str: string

School type name

year_from: number

Year the user started to study

year_graduated: number

Graduation year

year_to: number

Year the user finished to study

Generated using TypeDoc