Skip to content

Commit 6a06ff1

Browse files
fix: Support any type with google.protobuf.Value format.
1 parent fe43b11 commit 6a06ff1

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Google.Api.Generator.Rest/Models/SchemaTypes.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ internal static class SchemaTypes
2626
new Dictionary<(string, string), Type>()
2727
{
2828
{ ("any", null), typeof(object) },
29+
{ ("any", "google.protobuf.Value"), typeof(object) },
2930
{ ("boolean", null), typeof(bool) },
3031
{ ("integer", null), typeof(int) },
3132
{ ("number", null), typeof(double) },

0 commit comments

Comments
 (0)