74 lines
2.1 KiB
Python
74 lines
2.1 KiB
Python
from collections.abc import Mapping
|
|
from typing import Any, TypeVar
|
|
|
|
from attrs import define as _attrs_define
|
|
from attrs import field as _attrs_field
|
|
|
|
from .. import types
|
|
|
|
T = TypeVar("T", bound="SelectedNodeDeletion")
|
|
|
|
|
|
@_attrs_define
|
|
class SelectedNodeDeletion:
|
|
"""A serializer used specifically in the remove-from-basket process. This serializer takes only the id of the selected
|
|
node to delete. The selected node must currently be in the basket's registrations.
|
|
|
|
Attributes:
|
|
selected_node_id (int):
|
|
"""
|
|
|
|
selected_node_id: int
|
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
|
|
def to_dict(self) -> dict[str, Any]:
|
|
selected_node_id = self.selected_node_id
|
|
|
|
field_dict: dict[str, Any] = {}
|
|
field_dict.update(self.additional_properties)
|
|
field_dict.update(
|
|
{
|
|
"selected_node_id": selected_node_id,
|
|
}
|
|
)
|
|
|
|
return field_dict
|
|
|
|
def to_multipart(self) -> types.RequestFiles:
|
|
files: types.RequestFiles = []
|
|
|
|
files.append(("selected_node_id", (None, str(self.selected_node_id).encode(), "text/plain")))
|
|
|
|
for prop_name, prop in self.additional_properties.items():
|
|
files.append((prop_name, (None, str(prop).encode(), "text/plain")))
|
|
|
|
return files
|
|
|
|
@classmethod
|
|
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
d = dict(src_dict)
|
|
selected_node_id = d.pop("selected_node_id")
|
|
|
|
selected_node_deletion = cls(
|
|
selected_node_id=selected_node_id,
|
|
)
|
|
|
|
selected_node_deletion.additional_properties = d
|
|
return selected_node_deletion
|
|
|
|
@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
|