We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ed17cb commit 990fd30Copy full SHA for 990fd30
src/Kiota.Builder/Configuration/LanguagesInformation.cs
@@ -15,7 +15,9 @@ public static LanguagesInformation Parse(JsonObject jsonNode)
15
{
16
var extension = new LanguagesInformation();
17
foreach (var property in jsonNode.Where(static property => property.Value is JsonObject))
18
+ {
19
extension.Add(property.Key, LanguageInformation.Parse(property.Value!));
20
+ }
21
22
return extension;
23
}
0 commit comments