113 lines
3.0 KiB
Python
113 lines
3.0 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="NodeLimitM2M")
|
|
|
|
|
|
@_attrs_define
|
|
class NodeLimitM2M:
|
|
"""Serializer (read/write) for `NodeLimitM2M` relation model
|
|
|
|
Attributes:
|
|
event (int):
|
|
event_id (int):
|
|
id (int):
|
|
limit_id (int):
|
|
node_configuration_id (int):
|
|
"""
|
|
|
|
event: int
|
|
event_id: int
|
|
id: int
|
|
limit_id: int
|
|
node_configuration_id: int
|
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
|
|
def to_dict(self) -> dict[str, Any]:
|
|
event = self.event
|
|
|
|
event_id = self.event_id
|
|
|
|
id = self.id
|
|
|
|
limit_id = self.limit_id
|
|
|
|
node_configuration_id = self.node_configuration_id
|
|
|
|
field_dict: dict[str, Any] = {}
|
|
field_dict.update(self.additional_properties)
|
|
field_dict.update(
|
|
{
|
|
"event": event,
|
|
"event_id": event_id,
|
|
"id": id,
|
|
"limit_id": limit_id,
|
|
"node_configuration_id": node_configuration_id,
|
|
}
|
|
)
|
|
|
|
return field_dict
|
|
|
|
def to_multipart(self) -> types.RequestFiles:
|
|
files: types.RequestFiles = []
|
|
|
|
files.append(("event", (None, str(self.event).encode(), "text/plain")))
|
|
|
|
files.append(("event_id", (None, str(self.event_id).encode(), "text/plain")))
|
|
|
|
files.append(("id", (None, str(self.id).encode(), "text/plain")))
|
|
|
|
files.append(("limit_id", (None, str(self.limit_id).encode(), "text/plain")))
|
|
|
|
files.append(("node_configuration_id", (None, str(self.node_configuration_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)
|
|
event = d.pop("event")
|
|
|
|
event_id = d.pop("event_id")
|
|
|
|
id = d.pop("id")
|
|
|
|
limit_id = d.pop("limit_id")
|
|
|
|
node_configuration_id = d.pop("node_configuration_id")
|
|
|
|
node_limit_m2m = cls(
|
|
event=event,
|
|
event_id=event_id,
|
|
id=id,
|
|
limit_id=limit_id,
|
|
node_configuration_id=node_configuration_id,
|
|
)
|
|
|
|
node_limit_m2m.additional_properties = d
|
|
return node_limit_m2m
|
|
|
|
@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
|