Browser-Strutture-Musa/src/api/models/codice-luogo.ts
2025-11-13 14:03:34 +01:00

51 lines
753 B
TypeScript

/* 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;
}