Source code for kittycad.models.color

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

import attr

from ..types import UNSET, Unset

HK = TypeVar("HK", bound="Color")


[docs]@attr.s(auto_attribs=True) class Color: """An RGBA color""" # noqa: E501 a: Union[Unset, float] = UNSET b: Union[Unset, float] = UNSET g: Union[Unset, float] = UNSET r: Union[Unset, float] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
[docs] def to_dict(self) -> Dict[str, Any]: a = self.a b = self.b g = self.g r = self.r field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if a is not UNSET: field_dict["a"] = a if b is not UNSET: field_dict["b"] = b if g is not UNSET: field_dict["g"] = g if r is not UNSET: field_dict["r"] = r return field_dict
[docs] @classmethod def from_dict(cls: Type[HK], src_dict: Dict[str, Any]) -> HK: d = src_dict.copy() a = d.pop("a", UNSET) b = d.pop("b", UNSET) g = d.pop("g", UNSET) r = d.pop("r", UNSET) color = cls( a=a, b=b, g=g, r=r, ) color.additional_properties = d return color
@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