[UP] v 0.1.6-1
This commit is contained in:
parent
73cef306c9
commit
78c122b864
2 changed files with 4 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "yandexapimanager"
|
name = "yandexapimanager"
|
||||||
version = "0.1.6"
|
version = "0.1.6-1"
|
||||||
description = ""
|
description = ""
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Evgeny (Krymmy) Momotov",email = "evgeny.momotov@gmail.com"}
|
{name = "Evgeny (Krymmy) Momotov",email = "evgeny.momotov@gmail.com"}
|
||||||
|
|
|
||||||
|
|
@ -104,6 +104,9 @@ class YandexFleetApiKey(UUIDModel, BasicModel):
|
||||||
class Driver(BasicModel):
|
class Driver(BasicModel):
|
||||||
yandex_fleet: Optional[YandexFleet] = Field(description="ID или название флота Yandex", example="fleet-123")
|
yandex_fleet: Optional[YandexFleet] = Field(description="ID или название флота Yandex", example="fleet-123")
|
||||||
driver_id: str = Field(max_length=64, description="ID драйвера в Yandex", example="drv-abc123")
|
driver_id: str = Field(max_length=64, description="ID драйвера в Yandex", example="drv-abc123")
|
||||||
|
first_name: Optional[str] = Field(description="Имя", example="John", default=None)
|
||||||
|
last_name : Optional[str] = Field(description="Фамилия", example="Doe", default=None)
|
||||||
|
middle_name: Optional[str] = Field(description="Отчество", example="Ivanovich", default=None)
|
||||||
created_at: Optional[str] = Field(description="Дата создания", example="2024-01-01T12:00:00")
|
created_at: Optional[str] = Field(description="Дата создания", example="2024-01-01T12:00:00")
|
||||||
updated_at: Optional[str] = Field(description="Дата обновления", example="2024-01-01T12:00:00")
|
updated_at: Optional[str] = Field(description="Дата обновления", example="2024-01-01T12:00:00")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue