File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
src/main/scala/algoliasearch/ingestion Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,22 @@ package algoliasearch.ingestion
23
23
*
24
24
* @param runID
25
25
* Universally unique identifier (UUID) of a task run.
26
+ * @param eventID
27
+ * Universally unique identifier (UUID) of an event.
26
28
* @param data
27
29
* when used with discovering or validating sources, the sampled data of your source is returned.
28
30
* @param events
29
31
* in case of error, observability events will be added to the response, if any.
30
32
* @param message
31
33
* a message describing the outcome of a validate run.
34
+ * @param createdAt
35
+ * Date of creation in RFC 3339 format.
32
36
*/
33
37
case class WatchResponse (
34
38
runID : String ,
39
+ eventID : Option [String ] = scala.None ,
35
40
data : Option [Seq [Any ]] = scala.None ,
36
41
events : Option [Seq [Event ]] = scala.None ,
37
- message : Option [String ] = scala.None
42
+ message : Option [String ] = scala.None ,
43
+ createdAt : Option [String ] = scala.None
38
44
)
You can’t perform that action at this time.
0 commit comments