Source code for kittycad.models.modeling_outcome

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

import attr

from ..models.modeling_cmd_id import ModelingCmdId
from ..types import UNSET, Unset
from .modeling_error import ModelingError
from .ok_modeling_cmd_response import OkModelingCmdResponse

success = OkModelingCmdResponse


error = ModelingError


GN = TypeVar("GN", bound="cancelled")


[docs]@attr.s(auto_attribs=True) class cancelled: what_failed: Union[Unset, ModelingCmdId] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
[docs] def to_dict(self) -> Dict[str, Any]: if not isinstance(self.what_failed, Unset): what_failed = self.what_failed field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if what_failed is not UNSET: field_dict["what_failed"] = what_failed return field_dict
[docs] @classmethod def from_dict(cls: Type[GN], src_dict: Dict[str, Any]) -> GN: d = src_dict.copy() _what_failed = d.pop("what_failed", UNSET) what_failed: Union[Unset, ModelingCmdId] if isinstance(_what_failed, Unset): what_failed = UNSET else: what_failed = _what_failed # type: ignore[arg-type] cancelled = cls( what_failed=what_failed, ) cancelled.additional_properties = d return cancelled
@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
ModelingOutcome = Union[success, error, cancelled]