/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type City = { /** * The unique identifier of the city */ city_uid: number; city: string; state_province?: string; country: string; }