Skip to content

Commit a4431d5

Browse files
algolia-botmillotp
andcommitted
fix(specs): message is not required in WatchResponse (generated)
algolia/api-clients-automation#4723 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 25bd6e7 commit a4431d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

algoliasearch/Models/Ingestion/WatchResponse.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ public WatchResponse() { }
2424
/// <summary>
2525
/// Initializes a new instance of the WatchResponse class.
2626
/// </summary>
27-
/// <param name="message">a message describing the outcome of a validate run. (required).</param>
28-
public WatchResponse(string message)
27+
/// <param name="runID">Universally unique identifier (UUID) of a task run. (required).</param>
28+
public WatchResponse(string runID)
2929
{
30-
Message = message ?? throw new ArgumentNullException(nameof(message));
30+
RunID = runID ?? throw new ArgumentNullException(nameof(runID));
3131
}
3232

3333
/// <summary>

0 commit comments

Comments
 (0)