Skip to content

Commit aa40eca

Browse files
committed
chore: Fix KeyValuePair model, remove local core reference
1 parent 9eb3c4a commit aa40eca

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

IBM.Watson.sln

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IBM.Watson.ToneAnalyzer.v3.
119119
EndProject
120120
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IBM.Watson.VisualRecognition.v3.Examples", "examples\IBM.Watson.VisualRecognition.v3.Examples\IBM.Watson.VisualRecognition.v3.Examples.csproj", "{EBED7B56-15D3-472E-A758-6452415AA941}"
121121
EndProject
122-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IBM.Cloud.SDK.Core", "..\dotnet-sdk-core\src\IBM.Cloud.SDK.Core\IBM.Cloud.SDK.Core.csproj", "{D350328C-0EEE-41A5-B7F6-9CA177BF67D8}"
123-
EndProject
124-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IBM.Cloud.SDK.Core.Tests", "..\dotnet-sdk-core\test\IBM.Cloud.SDK.Core.Tests\IBM.Cloud.SDK.Core.Tests.csproj", "{880496E4-3E92-4CE4-809D-1471284C8E93}"
125-
EndProject
126122
Global
127123
GlobalSection(SolutionConfigurationPlatforms) = preSolution
128124
Debug|Any CPU = Debug|Any CPU
@@ -309,14 +305,6 @@ Global
309305
{EBED7B56-15D3-472E-A758-6452415AA941}.Debug|Any CPU.Build.0 = Debug|Any CPU
310306
{EBED7B56-15D3-472E-A758-6452415AA941}.Release|Any CPU.ActiveCfg = Release|Any CPU
311307
{EBED7B56-15D3-472E-A758-6452415AA941}.Release|Any CPU.Build.0 = Release|Any CPU
312-
{D350328C-0EEE-41A5-B7F6-9CA177BF67D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
313-
{D350328C-0EEE-41A5-B7F6-9CA177BF67D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
314-
{D350328C-0EEE-41A5-B7F6-9CA177BF67D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
315-
{D350328C-0EEE-41A5-B7F6-9CA177BF67D8}.Release|Any CPU.Build.0 = Release|Any CPU
316-
{880496E4-3E92-4CE4-809D-1471284C8E93}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
317-
{880496E4-3E92-4CE4-809D-1471284C8E93}.Debug|Any CPU.Build.0 = Debug|Any CPU
318-
{880496E4-3E92-4CE4-809D-1471284C8E93}.Release|Any CPU.ActiveCfg = Release|Any CPU
319-
{880496E4-3E92-4CE4-809D-1471284C8E93}.Release|Any CPU.Build.0 = Release|Any CPU
320308
EndGlobalSection
321309
GlobalSection(SolutionProperties) = preSolution
322310
HideSolutionNode = FALSE

src/IBM.Watson.CompareComply.v1/Model/KeyValuePair.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
*/
1717

1818
using Newtonsoft.Json;
19-
19+
using System.Collections.Generic;
20+
2021
namespace IBM.Watson.CompareComply.v1.Model
2122
{
2223
/// <summary>
@@ -30,10 +31,10 @@ public class KeyValuePair
3031
[JsonProperty("key", NullValueHandling = NullValueHandling.Ignore)]
3132
public Key Key { get; set; }
3233
/// <summary>
33-
/// A value in a key-value pair.
34+
/// A list of values in a key-value pair.
3435
/// </summary>
3536
[JsonProperty("value", NullValueHandling = NullValueHandling.Ignore)]
36-
public Value Value { get; set; }
37+
public List<Value> Value { get; set; }
3738
}
3839

3940
}

0 commit comments

Comments
 (0)