We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4629e3 commit e60ee3eCopy full SHA for e60ee3e
pyoverkiz/models.py
@@ -618,7 +618,7 @@ class Scenario:
618
creation_time: int
619
last_update_time: int | None = None
620
label: str = field(repr=obfuscate_string)
621
- metadata: str
+ metadata: str | None = None
622
shortcut: bool | None = None
623
notification_type_mask: int | None = None
624
notification_condition: str | None = None
@@ -630,9 +630,9 @@ class Scenario:
630
def __init__(
631
self,
632
creation_time: int,
633
- metadata: str,
634
actions: list[dict[str, Any]],
635
oid: str,
+ metadata: str | None = None,
636
last_update_time: int | None = None,
637
label: str | None = None,
638
shortcut: bool | None = None,
0 commit comments