Skip to content

Commit 50627b5

Browse files
fix(specs): updated watchResponse (generated)
algolia/api-clients-automation#4879 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
1 parent 8023b52 commit 50627b5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/main/scala/algoliasearch/ingestion/WatchResponse.scala

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,22 @@ package algoliasearch.ingestion
2323
*
2424
* @param runID
2525
* Universally unique identifier (UUID) of a task run.
26+
* @param eventID
27+
* Universally unique identifier (UUID) of an event.
2628
* @param data
2729
* when used with discovering or validating sources, the sampled data of your source is returned.
2830
* @param events
2931
* in case of error, observability events will be added to the response, if any.
3032
* @param message
3133
* a message describing the outcome of a validate run.
34+
* @param createdAt
35+
* Date of creation in RFC 3339 format.
3236
*/
3337
case class WatchResponse(
3438
runID: String,
39+
eventID: Option[String] = scala.None,
3540
data: Option[Seq[Any]] = scala.None,
3641
events: Option[Seq[Event]] = scala.None,
37-
message: Option[String] = scala.None
42+
message: Option[String] = scala.None,
43+
createdAt: Option[String] = scala.None
3844
)

0 commit comments

Comments
 (0)