Source code for pydelfini.delfini_core.models.bundle_definition
from typing import Any
from typing import cast
from typing import Dict
from typing import List
from typing import Type
from typing import TypeVar
from attrs import define as _attrs_define
from attrs import field as _attrs_field
T = TypeVar("T", bound="BundleDefinition")
[docs]
@_attrs_define
class BundleDefinition:
"""BundleDefinition model
Attributes:
elements (List[str]): An ordered list of data elements in this bundle
name (str):
"""
elements: List[str]
name: str
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
[docs]
def to_dict(self) -> Dict[str, Any]:
"""Convert to a dict"""
elements = self.elements
name = self.name
field_dict: Dict[str, Any] = {}
field_dict.update(self.additional_properties)
field_dict.update(
{
"elements": elements,
"name": name,
}
)
return field_dict
[docs]
@classmethod
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
"""Create an instance of :py:class:`BundleDefinition` from a dict"""
d = src_dict.copy()
elements = cast(List[str], d.pop("elements"))
name = d.pop("name")
bundle_definition = cls(
elements=elements,
name=name,
)
bundle_definition.additional_properties = d
return bundle_definition
@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