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 9ccc6b5 commit 6577335Copy full SHA for 6577335
algoliasearch/ingestion/models/watch_response.py
@@ -37,13 +37,13 @@ class WatchResponse(BaseModel):
37
WatchResponse
38
"""
39
40
- run_id: Optional[str] = None
+ run_id: str
41
""" Universally unique identifier (UUID) of a task run. """
42
data: Optional[List[object]] = None
43
""" when used with discovering or validating sources, the sampled data of your source is returned. """
44
events: Optional[List[Event]] = None
45
""" in case of error, observability events will be added to the response, if any. """
46
- message: str
+ message: Optional[str] = None
47
""" a message describing the outcome of a validate run. """
48
49
model_config = ConfigDict(
0 commit comments