Skip to content

Commit 4340a73

Browse files
committed
refactor: keep param order for updateWorkspace consistent
1 parent f48d19f commit 4340a73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scripts/Services/Assistant/V1/AssistantService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ private void OnGetWorkspaceResponse(RESTConnector.Request req, RESTConnector.Res
522522
/// If **append**=`true`, existing elements are preserved, and the new elements are added. If any elements in
523523
/// the new data collide with existing elements, the update request fails. (optional, default to false)</param>
524524
/// <returns><see cref="Workspace" />Workspace</returns>
525-
public bool UpdateWorkspace(Callback<Workspace> callback, string workspaceId, string name = null, string description = null, string language = null, Dictionary<string, object> metadata = null, bool? learningOptOut = null, WorkspaceSystemSettings systemSettings = null, List<CreateIntent> intents = null, List<CreateEntity> entities = null, List<DialogNode> dialogNodes = null, List<Counterexample> counterexamples = null, List<Webhook> webhooks = null, bool? append = null)
525+
public bool UpdateWorkspace(Callback<Workspace> callback, string workspaceId, string name = null, string description = null, string language = null, Dictionary<string, object> metadata = null, bool? learningOptOut = null, WorkspaceSystemSettings systemSettings = null, List<CreateIntent> intents = null, List<CreateEntity> entities = null, List<DialogNode> dialogNodes = null, List<Counterexample> counterexamples = null, bool? append = null, List<Webhook> webhooks = null)
526526
{
527527
if (callback == null)
528528
throw new ArgumentNullException("`callback` is required for `UpdateWorkspace`");

0 commit comments

Comments
 (0)