lsp
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
from typing import Any, Dict, List, Type, TypeVar, Union
|
||||
|
||||
import attr
|
||||
|
||||
from ..models.open_flow_value_failure_module import OpenFlowValueFailureModule
|
||||
from ..models.open_flow_value_modules_item import OpenFlowValueModulesItem
|
||||
from ..types import UNSET, Unset
|
||||
|
||||
T = TypeVar("T", bound="OpenFlowValue")
|
||||
|
||||
|
||||
@attr.s(auto_attribs=True)
|
||||
class OpenFlowValue:
|
||||
"""
|
||||
Attributes:
|
||||
modules (List[OpenFlowValueModulesItem]):
|
||||
failure_module (Union[Unset, OpenFlowValueFailureModule]):
|
||||
same_worker (Union[Unset, bool]):
|
||||
"""
|
||||
|
||||
modules: List[OpenFlowValueModulesItem]
|
||||
failure_module: Union[Unset, OpenFlowValueFailureModule] = UNSET
|
||||
same_worker: Union[Unset, bool] = UNSET
|
||||
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
|
||||
|
||||
def to_dict(self) -> Dict[str, Any]:
|
||||
modules = []
|
||||
for modules_item_data in self.modules:
|
||||
modules_item = modules_item_data.to_dict()
|
||||
|
||||
modules.append(modules_item)
|
||||
|
||||
failure_module: Union[Unset, Dict[str, Any]] = UNSET
|
||||
if not isinstance(self.failure_module, Unset):
|
||||
failure_module = self.failure_module.to_dict()
|
||||
|
||||
same_worker = self.same_worker
|
||||
|
||||
field_dict: Dict[str, Any] = {}
|
||||
field_dict.update(self.additional_properties)
|
||||
field_dict.update(
|
||||
{
|
||||
"modules": modules,
|
||||
}
|
||||
)
|
||||
if failure_module is not UNSET:
|
||||
field_dict["failure_module"] = failure_module
|
||||
if same_worker is not UNSET:
|
||||
field_dict["same_worker"] = same_worker
|
||||
|
||||
return field_dict
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
||||
d = src_dict.copy()
|
||||
modules = []
|
||||
_modules = d.pop("modules")
|
||||
for modules_item_data in _modules:
|
||||
modules_item = OpenFlowValueModulesItem.from_dict(modules_item_data)
|
||||
|
||||
modules.append(modules_item)
|
||||
|
||||
_failure_module = d.pop("failure_module", UNSET)
|
||||
failure_module: Union[Unset, OpenFlowValueFailureModule]
|
||||
if isinstance(_failure_module, Unset):
|
||||
failure_module = UNSET
|
||||
else:
|
||||
failure_module = OpenFlowValueFailureModule.from_dict(_failure_module)
|
||||
|
||||
same_worker = d.pop("same_worker", UNSET)
|
||||
|
||||
open_flow_value = cls(
|
||||
modules=modules,
|
||||
failure_module=failure_module,
|
||||
same_worker=same_worker,
|
||||
)
|
||||
|
||||
open_flow_value.additional_properties = d
|
||||
return open_flow_value
|
||||
|
||||
@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
|
||||
Reference in New Issue
Block a user