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