/* tslint:disable */ /* eslint-disable */ /* Code generated by ng-openapi-gen DO NOT EDIT. */ export interface CodiceLuogo { /** * Unique code identifying the place */ codice: string; /** * Code identifying the region */ codiceRegione: string; /** * Code identifying the state */ codiceStato: string; /** * Name of the municipality */ comune: string; /** * Indicates whether the location is active (1 = active, 0 = inactive) */ flagAttivo: boolean; /** * Full name of the province */ provincia: string; /** * Name of the region */ regione: string; /** * Abbreviation of the province */ siglaProvincia: string; /** * Name of the state */ stato: string; }