Coverage for src/henrri_connect/models/base/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-05 10:54 +0200
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-05 10:54 +0200
1"""Modèles de base Pydantic v2 pour l'API Henrri."""
3from .models import (
4 CamelModel,
5 Link,
6 MetaListResponse,
7 MetaPagedListResponse,
8)
9from .enums import (
10 CustomerType,
11 CompanyIdentifierType,
12 DocumentKind,
13 DocumentLineKind,
14 DocumentState,
15 ItemCategoryContentKind,
16 ItemCategoryKind,
17 SortOrder,
18 UnitKind,
19)
21__all__ = [
22 "CustomerType",
23 "CamelModel",
24 "CompanyIdentifierType",
25 "DocumentKind",
26 "DocumentLineKind",
27 "DocumentState",
28 "ItemCategoryContentKind",
29 "ItemCategoryKind",
30 "Link",
31 "MetaListResponse",
32 "MetaPagedListResponse",
33 "SortOrder",
34 "UnitKind",
35]