Interface UsersMilitary

interface UsersMilitary {
    country_id: number;
    from: number;
    id: number;
    unit: string;
    unit_id: number;
    until: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

country_id: number

Country ID

from: number

From year

id: number

Military ID

unit: string

Unit name

unit_id: number

Unit ID

until: number

Till year

Generated using TypeDoc