54 lines
1.4 KiB
Python
54 lines
1.4 KiB
Python
from pydantic import BaseModel
|
|
|
|
"""
|
|
"sex_code": "M",
|
|
"country_code": "TR",
|
|
"created_at": "2025-04-13 10:03:32 +00:00",
|
|
"father_name": "Father",
|
|
"birth_place": "Ankara",
|
|
"updated_credentials_token": null,
|
|
"cryp_uu_id": null,
|
|
"mother_name": "Mother",
|
|
"expiry_starts": "2025-04-13 10:03:32 +00:00",
|
|
"confirmed_credentials_token": null,
|
|
"surname": "Karatay",
|
|
"firstname": "Berkay Super User",
|
|
"birth_date": "1990-01-07 00:00:00 +00:00",
|
|
"expiry_ends": "2099-12-31 00:00:00 +00:00",
|
|
"is_confirmed": true,
|
|
"is_email_send": false,
|
|
"tax_no": "1231231232",
|
|
"person_ref": "",
|
|
"active": true,
|
|
"deleted": false,
|
|
"updated_at": "2025-04-13 10:03:32 +00:00",
|
|
"uu_id": "b5b6e68f-a4d0-4d64-aa18-634671cb1299",
|
|
"middle_name": "",
|
|
"created_credentials_token": null,
|
|
"person_tag": "BSU-System",
|
|
"is_notification_send": false
|
|
"""
|
|
|
|
|
|
class REQUESTAWMXNTKMGPPOJWRCTZUBADNFLQDBDYVQAORFAVCSXUUHEBQHCEPCSKFBADBODFDBPYKOVINV(
|
|
BaseModel
|
|
):
|
|
uu_id: str
|
|
created_at: str
|
|
updated_at: str
|
|
person_tag: str
|
|
expiry_starts: str
|
|
expiry_ends: str
|
|
firstname: str
|
|
middle_name: str
|
|
surname: str
|
|
birth_date: str
|
|
birth_place: str
|
|
sex_code: str
|
|
country_code: str
|
|
tax_no: str
|
|
active: bool
|
|
deleted: bool
|
|
is_confirmed: bool
|
|
is_notification_send: bool
|