Files
windmill/python-client/windmill-api/windmill_api/models/raw_script.py
Ruben Fiszel ac09681d49 lsp
2022-10-08 13:25:07 +02:00

84 lines
2.0 KiB
Python

from typing import Any, Dict, List, Type, TypeVar, Union
import attr
from ..models.raw_script_language import RawScriptLanguage
from ..types import UNSET, Unset
T = TypeVar("T", bound="RawScript")
@attr.s(auto_attribs=True)
class RawScript:
"""
Attributes:
content (str):
language (RawScriptLanguage):
type (str):
path (Union[Unset, str]):
"""
content: str
language: RawScriptLanguage
type: str
path: Union[Unset, str] = UNSET
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
def to_dict(self) -> Dict[str, Any]:
content = self.content
language = self.language.value
type = self.type
path = self.path
field_dict: Dict[str, Any] = {}
field_dict.update(self.additional_properties)
field_dict.update(
{
"content": content,
"language": language,
"type": type,
}
)
if path is not UNSET:
field_dict["path"] = path
return field_dict
@classmethod
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
d = src_dict.copy()
content = d.pop("content")
language = RawScriptLanguage(d.pop("language"))
type = d.pop("type")
path = d.pop("path", UNSET)
raw_script = cls(
content=content,
language=language,
type=type,
path=path,
)
raw_script.additional_properties = d
return raw_script
@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