Skip to content

Commit 06497b4

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 97a9f7c commit 06497b4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

client/src/commonMain/kotlin/com/algolia/client/model/ingestion/WatchResponse.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,21 @@ import kotlinx.serialization.json.*
88
* WatchResponse
99
*
1010
* @param runID Universally unique identifier (UUID) of a task run.
11+
* @param eventID Universally unique identifier (UUID) of an event.
1112
* @param `data` when used with discovering or validating sources, the sampled data of your source is returned.
1213
* @param events in case of error, observability events will be added to the response, if any.
1314
* @param message a message describing the outcome of a validate run.
15+
* @param createdAt Date of creation in RFC 3339 format.
1416
*/
1517
@Serializable
1618
public data class WatchResponse(
1719

1820
/** Universally unique identifier (UUID) of a task run. */
1921
@SerialName(value = "runID") val runID: String,
2022

23+
/** Universally unique identifier (UUID) of an event. */
24+
@SerialName(value = "eventID") val eventID: String? = null,
25+
2126
/** when used with discovering or validating sources, the sampled data of your source is returned. */
2227
@SerialName(value = "data") val `data`: List<JsonObject>? = null,
2328

@@ -26,4 +31,7 @@ public data class WatchResponse(
2631

2732
/** a message describing the outcome of a validate run. */
2833
@SerialName(value = "message") val message: String? = null,
34+
35+
/** Date of creation in RFC 3339 format. */
36+
@SerialName(value = "createdAt") val createdAt: String? = null,
2937
)

0 commit comments

Comments
 (0)