Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions nuon/models/signaldb_workflow_ref.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,30 @@ class SignaldbWorkflowRef:
Attributes:
id (str | Unset):
namespace (str | Unset):
run_id (str | Unset):
"""

id: str | Unset = UNSET
namespace: str | Unset = UNSET
run_id: str | Unset = UNSET
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)

def to_dict(self) -> dict[str, Any]:
id = self.id

namespace = self.namespace

run_id = self.run_id

field_dict: dict[str, Any] = {}
field_dict.update(self.additional_properties)
field_dict.update({})
if id is not UNSET:
field_dict["id"] = id
if namespace is not UNSET:
field_dict["namespace"] = namespace
if run_id is not UNSET:
field_dict["run_id"] = run_id

return field_dict

Expand All @@ -45,9 +51,12 @@ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:

namespace = d.pop("namespace", UNSET)

run_id = d.pop("run_id", UNSET)

signaldb_workflow_ref = cls(
id=id,
namespace=namespace,
run_id=run_id,
)

signaldb_workflow_ref.additional_properties = d
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "nuon"
version = "0.19.909"
version = "0.19.911"
description = "A client library for accessing Nuon"
authors = []
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.19.909
0.19.911
Loading