import datetime from collections.abc import Mapping from typing import Any, TypeVar, Union, cast from uuid import UUID from attrs import define as _attrs_define from attrs import field as _attrs_field from dateutil.parser import isoparse from ..types import UNSET, Unset T = TypeVar("T", bound="DatasetDTO") @_attrs_define class DatasetDTO: """ Attributes: id (UUID): name (str): created_at (datetime.datetime): owner_id (UUID): updated_at (Union[None, Unset, datetime.datetime]): """ id: UUID name: str created_at: datetime.datetime owner_id: UUID updated_at: Union[None, Unset, datetime.datetime] = UNSET additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict) def to_dict(self) -> dict[str, Any]: id = str(self.id) name = self.name created_at = self.created_at.isoformat() owner_id = str(self.owner_id) updated_at: Union[None, Unset, str] if isinstance(self.updated_at, Unset): updated_at = UNSET elif isinstance(self.updated_at, datetime.datetime): updated_at = self.updated_at.isoformat() else: updated_at = self.updated_at field_dict: dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "id": id, "name": name, "createdAt": created_at, "ownerId": owner_id, } ) if updated_at is not UNSET: field_dict["updatedAt"] = updated_at return field_dict @classmethod def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T: d = dict(src_dict) id = UUID(d.pop("id")) name = d.pop("name") created_at = isoparse(d.pop("createdAt")) owner_id = UUID(d.pop("ownerId")) def _parse_updated_at(data: object) -> Union[None, Unset, datetime.datetime]: if data is None: return data if isinstance(data, Unset): return data try: if not isinstance(data, str): raise TypeError() updated_at_type_0 = isoparse(data) return updated_at_type_0 except: # noqa: E722 pass return cast(Union[None, Unset, datetime.datetime], data) updated_at = _parse_updated_at(d.pop("updatedAt", UNSET)) dataset_dto = cls( id=id, name=name, created_at=created_at, owner_id=owner_id, updated_at=updated_at, ) dataset_dto.additional_properties = d return dataset_dto @property def additional_keys(self) -> list[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties