axione-elig-test/address_finder/model.py

18 lines
287 B
Python
Raw Normal View History

2021-11-02 15:21:34 +01:00
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