17 lines
287 B
Python
17 lines
287 B
Python
from typing import TypedDict
|
|
|
|
class Commune(TypedDict):
|
|
codeInsee: str
|
|
nom: str
|
|
codeZip: str
|
|
|
|
class FantoirVoie(TypedDict):
|
|
id: str
|
|
dateAjout: int
|
|
libelle: list[str]
|
|
typeVoie:str
|
|
codeCommune: str
|
|
codeFantoir: str
|
|
cleRivoli: str
|
|
nomCommune: str
|
|
predecesseur: bool
|