from typing import ( TYPE_CHECKING, Any, BinaryIO, Dict, List, Optional, TextIO, Tuple, Type, TypeVar, Union, ) import attr from ..types import UNSET, Unset T = TypeVar("T", bound="InstagramAccount") @attr.s(auto_attribs=True) class InstagramAccount: """ Attributes: id (str): username (str): name (Union[Unset, None, str]): profile_picture_url (Union[Unset, None, str]): """ id: str username: str name: Union[Unset, None, str] = UNSET profile_picture_url: Union[Unset, None, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: id = self.id username = self.username name = self.name profile_picture_url = self.profile_picture_url field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "id": id, "username": username, } ) if name is not UNSET: field_dict["name"] = name if profile_picture_url is not UNSET: field_dict["profilePictureUrl"] = profile_picture_url return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() id = d.pop("id") username = d.pop("username") name = d.pop("name", UNSET) profile_picture_url = d.pop("profilePictureUrl", UNSET) instagram_account = cls( id=id, username=username, name=name, profile_picture_url=profile_picture_url, ) instagram_account.additional_properties = d return instagram_account @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