interface LocationSearchCity {
    countryId: number;
    id: number;
    name: null | string;
    stateId?: number;
}

Properties

countryId: number
id: number
name: null | string
stateId?: number