interface StreetAttributes {
    cityID: null | number;
    direction?: null | string;
    englishName: null | string;
    id: number;
    isEmpty: boolean;
    name: null | string;
    signText?: null | string;
    signType?: null | number;
}

Properties

cityID: null | number
direction?: null | string
englishName: null | string
id: number
isEmpty: boolean
name: null | string
signText?: null | string
signType?: null | number