@@ -8,16 +8,21 @@ import kotlinx.serialization.json.*
8
8
* WatchResponse
9
9
*
10
10
* @param runID Universally unique identifier (UUID) of a task run.
11
+ * @param eventID Universally unique identifier (UUID) of an event.
11
12
* @param `data` when used with discovering or validating sources, the sampled data of your source is returned.
12
13
* @param events in case of error, observability events will be added to the response, if any.
13
14
* @param message a message describing the outcome of a validate run.
15
+ * @param createdAt Date of creation in RFC 3339 format.
14
16
*/
15
17
@Serializable
16
18
public data class WatchResponse (
17
19
18
20
/* * Universally unique identifier (UUID) of a task run. */
19
21
@SerialName(value = " runID" ) val runID : String ,
20
22
23
+ /* * Universally unique identifier (UUID) of an event. */
24
+ @SerialName(value = " eventID" ) val eventID : String? = null ,
25
+
21
26
/* * when used with discovering or validating sources, the sampled data of your source is returned. */
22
27
@SerialName(value = " data" ) val `data`: List <JsonObject >? = null ,
23
28
@@ -26,4 +31,7 @@ public data class WatchResponse(
26
31
27
32
/* * a message describing the outcome of a validate run. */
28
33
@SerialName(value = " message" ) val message : String? = null ,
34
+
35
+ /* * Date of creation in RFC 3339 format. */
36
+ @SerialName(value = " createdAt" ) val createdAt : String? = null ,
29
37
)
0 commit comments