We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25bd6e7 commit a4431d5Copy full SHA for a4431d5
algoliasearch/Models/Ingestion/WatchResponse.cs
@@ -24,10 +24,10 @@ public WatchResponse() { }
24
/// <summary>
25
/// Initializes a new instance of the WatchResponse class.
26
/// </summary>
27
- /// <param name="message">a message describing the outcome of a validate run. (required).</param>
28
- public WatchResponse(string message)
+ /// <param name="runID">Universally unique identifier (UUID) of a task run. (required).</param>
+ public WatchResponse(string runID)
29
{
30
- Message = message ?? throw new ArgumentNullException(nameof(message));
+ RunID = runID ?? throw new ArgumentNullException(nameof(runID));
31
}
32
33
0 commit comments