Source code for kittycad.models.physics_constant

import datetime
from typing import Any, Dict, List, Type, TypeVar, Union

import attr
from dateutil.parser import isoparse

from ..models.api_call_status import ApiCallStatus
from ..models.physics_constant_name import PhysicsConstantName
from ..models.uuid import Uuid
from ..types import UNSET, Unset

H = TypeVar("H", bound="PhysicsConstant")


[docs]@attr.s(auto_attribs=True) class PhysicsConstant: """A physics constant.""" # noqa: E501 completed_at: Union[Unset, datetime.datetime] = UNSET constant: Union[Unset, PhysicsConstantName] = UNSET created_at: Union[Unset, datetime.datetime] = UNSET error: Union[Unset, str] = UNSET id: Union[Unset, str] = UNSET started_at: Union[Unset, datetime.datetime] = UNSET status: Union[Unset, ApiCallStatus] = UNSET updated_at: Union[Unset, datetime.datetime] = UNSET user_id: Union[Unset, str] = UNSET value: Union[Unset, float] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
[docs] def to_dict(self) -> Dict[str, Any]: completed_at: Union[Unset, str] = UNSET if not isinstance(self.completed_at, Unset): completed_at = self.completed_at.isoformat() if not isinstance(self.constant, Unset): constant = self.constant created_at: Union[Unset, str] = UNSET if not isinstance(self.created_at, Unset): created_at = self.created_at.isoformat() error = self.error id = self.id started_at: Union[Unset, str] = UNSET if not isinstance(self.started_at, Unset): started_at = self.started_at.isoformat() if not isinstance(self.status, Unset): status = self.status updated_at: Union[Unset, str] = UNSET if not isinstance(self.updated_at, Unset): updated_at = self.updated_at.isoformat() user_id = self.user_id value = self.value field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if completed_at is not UNSET: field_dict["completed_at"] = completed_at if constant is not UNSET: field_dict["constant"] = constant if created_at is not UNSET: field_dict["created_at"] = created_at if error is not UNSET: field_dict["error"] = error if id is not UNSET: field_dict["id"] = id if started_at is not UNSET: field_dict["started_at"] = started_at if status is not UNSET: field_dict["status"] = status if updated_at is not UNSET: field_dict["updated_at"] = updated_at if user_id is not UNSET: field_dict["user_id"] = user_id if value is not UNSET: field_dict["value"] = value return field_dict
[docs] @classmethod def from_dict(cls: Type[H], src_dict: Dict[str, Any]) -> H: d = src_dict.copy() _completed_at = d.pop("completed_at", UNSET) completed_at: Union[Unset, datetime.datetime] if isinstance(_completed_at, Unset): completed_at = UNSET else: completed_at = isoparse(_completed_at) _constant = d.pop("constant", UNSET) constant: Union[Unset, PhysicsConstantName] if isinstance(_constant, Unset): constant = UNSET else: constant = _constant # type: ignore[arg-type] _created_at = d.pop("created_at", UNSET) created_at: Union[Unset, datetime.datetime] if isinstance(_created_at, Unset): created_at = UNSET else: created_at = isoparse(_created_at) error = d.pop("error", UNSET) _id = d.pop("id", UNSET) id: Union[Unset, Uuid] if isinstance(_id, Unset): id = UNSET else: id = Uuid(_id) _started_at = d.pop("started_at", UNSET) started_at: Union[Unset, datetime.datetime] if isinstance(_started_at, Unset): started_at = UNSET else: started_at = isoparse(_started_at) _status = d.pop("status", UNSET) status: Union[Unset, ApiCallStatus] if isinstance(_status, Unset): status = UNSET else: status = _status # type: ignore[arg-type] _updated_at = d.pop("updated_at", UNSET) updated_at: Union[Unset, datetime.datetime] if isinstance(_updated_at, Unset): updated_at = UNSET else: updated_at = isoparse(_updated_at) user_id = d.pop("user_id", UNSET) value = d.pop("value", UNSET) physics_constant = cls( completed_at=completed_at, constant=constant, created_at=created_at, error=error, id=id, started_at=started_at, status=status, updated_at=updated_at, user_id=user_id, value=value, ) physics_constant.additional_properties = d return physics_constant
@property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys())
[docs] def __getitem__(self, key: str) -> Any: return self.additional_properties[key]
[docs] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value
[docs] def __delitem__(self, key: str) -> None: del self.additional_properties[key]
[docs] def __contains__(self, key: str) -> bool: return key in self.additional_properties