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 a70692a commit 9004087Copy full SHA for 9004087
nisystemlink/clients/result/models/_result.py
@@ -1,6 +1,7 @@
1
from datetime import datetime
2
from enum import Enum
3
from typing import Dict, List, Optional
4
+from pydantic import Extra
5
6
from nisystemlink.clients.core._uplink._json_model import JsonModel
7
@@ -85,5 +86,5 @@ class Result(JsonModel):
85
86
workspace: Optional[str]
87
"""The id of the workspace that this product belongs to."""
88
- is_finalized: Optional[bool]
89
- """Whether the result is finalized."""
+ class Config:
90
+ extra = Extra.allow
0 commit comments