from collections.abc import Mapping from typing import Any, TypeVar from attrs import define as _attrs_define from attrs import field as _attrs_field T = TypeVar("T", bound="LoginMethod") @_attrs_define class LoginMethod: """A serializer returning info for a login method Attributes: active_module_id (int): The id of the login method's active module key (str): name (str): Title of the login method description (str): Description of the login method """ active_module_id: int key: str name: str description: str additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict) def to_dict(self) -> dict[str, Any]: active_module_id = self.active_module_id key = self.key name = self.name description = self.description field_dict: dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "active_module_id": active_module_id, "key": key, "name": name, "description": description, } ) return field_dict @classmethod def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T: d = dict(src_dict) active_module_id = d.pop("active_module_id") key = d.pop("key") name = d.pop("name") description = d.pop("description") login_method = cls( active_module_id=active_module_id, key=key, name=name, description=description, ) login_method.additional_properties = d return login_method @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