Skip to content

Commit 5de83ec

Browse files
committed
feat(regeneration): regenerated with generator 3.21.0 and api def sdk-major-release-2020
1 parent 0339538 commit 5de83ec

File tree

158 files changed

+2238
-2420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+2238
-2420
lines changed

Examples/ExampleNaturalLanguageClassifierV1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 IBM Corp. All Rights Reserved.
2+
* (C) Copyright IBM Corp. 2019, 2020.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

Examples/ExampleNaturalLanguageUnderstandingV1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 IBM Corp. All Rights Reserved.
2+
* (C) Copyright IBM Corp. 2019, 2020.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

Examples/ExampleToneAnalyzerV3.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 IBM Corp. All Rights Reserved.
2+
* (C) Copyright IBM Corp. 2019, 2020.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

Scripts/Services/Assistant/V1/AssistantService.cs

Lines changed: 361 additions & 61 deletions
Large diffs are not rendered by default.

Scripts/Services/Assistant/V1/Model/BulkClassifyOutput.cs.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Scripts/Services/Assistant/V1/Model/BulkClassifyResponse.cs.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Scripts/Services/Assistant/V1/Model/BulkClassifyUtterance.cs.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Scripts/Services/Assistant/V1/Model/Context.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2018, 2019 IBM Corp. All Rights Reserved.
2+
* (C) Copyright IBM Corp. 2020.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -15,6 +15,7 @@
1515
*
1616
*/
1717

18+
using System.Collections.Generic;
1819
using IBM.Cloud.SDK.Model;
1920
using Newtonsoft.Json;
2021

@@ -23,7 +24,7 @@ namespace IBM.Watson.Assistant.V1.Model
2324
/// <summary>
2425
/// State information for the conversation. To maintain state, include the context from the previous response.
2526
/// </summary>
26-
public class Context: DynamicModel<object>
27+
public class Context : DynamicModel<object>
2728
{
2829
/// <summary>
2930
/// The unique identifier of the conversation.
@@ -34,7 +35,7 @@ public class Context: DynamicModel<object>
3435
/// For internal use only.
3536
/// </summary>
3637
[JsonProperty("system", NullValueHandling = NullValueHandling.Ignore)]
37-
public SystemResponse System { get; set; }
38+
public Dictionary<string, object> System { get; set; }
3839
/// <summary>
3940
/// Metadata related to the message.
4041
/// </summary>

Scripts/Services/Assistant/V1/Model/DialogNodeContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace IBM.Watson.Assistant.V1.Model
2424
/// <summary>
2525
/// The context for the dialog node.
2626
/// </summary>
27-
public class DialogNodeContext: DynamicModel<object>
27+
public class DialogNodeContext : DynamicModel<object>
2828
{
2929
/// <summary>
3030
/// Context data intended for specific integrations.

Scripts/Services/Assistant/V1/Model/DialogNodeContext.cs.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)