18 lines
485 B
Python
18 lines
485 B
Python
from typing import Optional
|
|
from api_validations.core_validations import BaseModelRegular
|
|
from api_validations.validations_request import (
|
|
PydanticBaseModel,
|
|
ListOptions,
|
|
)
|
|
|
|
|
|
class RegisterEvents2Employee(PydanticBaseModel):
|
|
event_uu_id_list: list[str] = []
|
|
employee_uu_id: Optional[str] = None
|
|
|
|
|
|
class RegisterEvents2Occupant(PydanticBaseModel):
|
|
event_uu_id_list: list[str] = []
|
|
build_part_uu_id: Optional[str] = None
|
|
occupant_uu_id: Optional[str] = None
|