Browser-Strutture-Musa/src/api/models/strutture-pubbliche-excerpt-res-dto.ts

97 lines
1.4 KiB
TypeScript

/* tslint:disable */
/* eslint-disable */
/* Code generated by ng-openapi-gen DO NOT EDIT. */
import { CodiceLuogoExcerptResDto } from '../models/codice-luogo-excerpt-res-dto';
export interface StrutturePubblicheExcerptResDto {
/**
* cap della struttura
*/
cap: string | null;
/**
* Luogo della struttura
*/
codiceLuogo: CodiceLuogoExcerptResDto;
/**
* cupPrivato della struttura
*/
cupPrivato: string | null;
/**
* cupPubblico della struttura
*/
cupPubblico: string | null;
/**
* email della struttura
*/
email: string | null;
/**
* fax della struttura
*/
fax: string | null;
/**
* Id della struttura
*/
id: number;
/**
* indirizzo della struttura
*/
indirizzo: string | null;
/**
* latitudine della struttura
*/
latitudine: string | null;
/**
* longitudine della struttura
*/
longitudine: string | null;
/**
* Nome della struttura
*/
nome: string;
/**
* numeroCivico della struttura
*/
numeroCivico: string | null;
/**
* partitaIva della struttura
*/
partitaIva: string | null;
/**
* sitoWeb della struttura
*/
sitoWeb: string | null;
/**
* stelline della struttura
*/
stelline: string;
/**
* Tipi della struttura
*/
struttureTipiStrutture?: string | null;
/**
* telefono1 della struttura
*/
telefono1: string | null;
/**
* telefono2 della struttura
*/
telefono2: string | null;
}