File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
algoliasearch/ingestion/models Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 22
22
23
23
_ALIASES = {
24
24
"run_id" : "runID" ,
25
+ "event_id" : "eventID" ,
25
26
"data" : "data" ,
26
27
"events" : "events" ,
27
28
"message" : "message" ,
29
+ "created_at" : "createdAt" ,
28
30
}
29
31
30
32
@@ -39,12 +41,16 @@ class WatchResponse(BaseModel):
39
41
40
42
run_id : str
41
43
""" Universally unique identifier (UUID) of a task run. """
44
+ event_id : Optional [str ] = None
45
+ """ Universally unique identifier (UUID) of an event. """
42
46
data : Optional [List [object ]] = None
43
47
""" when used with discovering or validating sources, the sampled data of your source is returned. """
44
48
events : Optional [List [Event ]] = None
45
49
""" in case of error, observability events will be added to the response, if any. """
46
50
message : Optional [str ] = None
47
51
""" a message describing the outcome of a validate run. """
52
+ created_at : Optional [str ] = None
53
+ """ Date of creation in RFC 3339 format. """
48
54
49
55
model_config = ConfigDict (
50
56
strict = False ,
You can’t perform that action at this time.
0 commit comments