forked from loafle/openapi-generator-original
[csharp] JsonConverter.mustache - fix propertyName variable conflict (#16356)
* JsonConverter.mustache - Obfuscate "propertyName" variable to rare name "__jsonPropertyName__" to avoid conflict with generated variables obfuscate "propertyName" variable, fixes issue if #allVars contains a variable named "propertyName" conflicting with the declared variable * prefix local variable with localVar * remove eol * minor fix * update --------- Co-authored-by: SDP190 <sprizant1@gmail.com>
This commit is contained in:
parent
4140b387fb
commit
e1b1b7d0c7
@ -66,9 +66,9 @@
|
||||
|
||||
if (utf8JsonReaderDiscriminator.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReaderDiscriminator.CurrentDepth - 1)
|
||||
{
|
||||
string{{nrt?}} propertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
string{{nrt?}} localVarJsonPropertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
utf8JsonReaderDiscriminator.Read();
|
||||
if (propertyName{{nrt?}}.Equals("{{propertyBaseName}}"){{#nrt}} ?? false{{/nrt}})
|
||||
if (localVarJsonPropertyName{{nrt?}}.Equals("{{propertyBaseName}}"){{#nrt}} ?? false{{/nrt}})
|
||||
{
|
||||
string{{nrt?}} discriminator = utf8JsonReaderDiscriminator.GetString();
|
||||
{{#mappedModels}}
|
||||
@ -156,10 +156,10 @@
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string{{nrt?}} propertyName = utf8JsonReader.GetString();
|
||||
string{{nrt?}} localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
{{#allVars}}
|
||||
case "{{baseName}}":
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "activity_outputs":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "prop1":
|
||||
prop1 = utf8JsonReader.GetString();
|
||||
|
@ -185,10 +185,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "empty_map":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -134,10 +134,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -134,10 +134,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "code":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -161,10 +161,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "color_code":
|
||||
colorCode = utf8JsonReader.GetString();
|
||||
|
@ -117,10 +117,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "cultivar":
|
||||
cultivar = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "ArrayArrayNumber":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "ArrayNumber":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -134,10 +134,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "array_array_of_integer":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "lengthCm":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -117,10 +117,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "lengthCm":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -165,10 +165,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "ATT_NAME":
|
||||
aTTNAME = utf8JsonReader.GetString();
|
||||
|
@ -102,10 +102,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "id":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -160,10 +160,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "name":
|
||||
name = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "_class":
|
||||
varClass = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "quadrilateralType":
|
||||
quadrilateralType = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -120,10 +120,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "dateOnlyProperty":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "name":
|
||||
name = utf8JsonReader.GetString();
|
||||
|
@ -102,10 +102,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "breed":
|
||||
breed = utf8JsonReader.GetString();
|
||||
|
@ -155,10 +155,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "mainShape":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -256,10 +256,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "array_enum":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -538,10 +538,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "enum_integer":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "shapeType":
|
||||
shapeType = utf8JsonReader.GetString();
|
||||
|
@ -115,10 +115,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "sourceURI":
|
||||
sourceURI = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "file":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "bar":
|
||||
bar = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "string":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -430,10 +430,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "binary":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -154,10 +154,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "color":
|
||||
color = utf8JsonReader.GetString();
|
||||
|
@ -141,10 +141,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
default:
|
||||
break;
|
||||
|
@ -143,10 +143,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "color":
|
||||
color = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "pet_type":
|
||||
petType = utf8JsonReader.GetString();
|
||||
|
@ -161,10 +161,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "bar":
|
||||
bar = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "NullableMessage":
|
||||
nullableMessage = utf8JsonReader.GetString();
|
||||
|
@ -117,10 +117,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "shapeType":
|
||||
shapeType = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "123-list":
|
||||
var123List = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "escapedLiteralString":
|
||||
escapedLiteralString = utf8JsonReader.GetString();
|
||||
|
@ -172,9 +172,9 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReaderDiscriminator.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReaderDiscriminator.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
utf8JsonReaderDiscriminator.Read();
|
||||
if (propertyName?.Equals("className") ?? false)
|
||||
if (localVarJsonPropertyName?.Equals("className") ?? false)
|
||||
{
|
||||
string? discriminator = utf8JsonReaderDiscriminator.GetString();
|
||||
if (discriminator?.Equals("Pig") ?? false)
|
||||
@ -206,10 +206,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -210,10 +210,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "direct_map":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -155,10 +155,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "dateTime":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "class":
|
||||
varClass = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "client":
|
||||
varClient = utf8JsonReader.GetString();
|
||||
|
@ -181,10 +181,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "name":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "a_objVariableobject":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -245,10 +245,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "array_items_nullable":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -115,10 +115,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "uuid":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -153,9 +153,9 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReaderDiscriminator.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReaderDiscriminator.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
utf8JsonReaderDiscriminator.Read();
|
||||
if (propertyName?.Equals("shapeType") ?? false)
|
||||
if (localVarJsonPropertyName?.Equals("shapeType") ?? false)
|
||||
{
|
||||
string? discriminator = utf8JsonReaderDiscriminator.GetString();
|
||||
if (discriminator?.Equals("Quadrilateral") ?? false)
|
||||
@ -182,10 +182,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "shapeType":
|
||||
shapeType = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "JustNumber":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -147,10 +147,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "bars":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -112,10 +112,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
default:
|
||||
break;
|
||||
|
@ -252,10 +252,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "id":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -134,10 +134,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "my_boolean":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -90,10 +90,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "pet_type":
|
||||
petType = utf8JsonReader.GetString();
|
||||
|
@ -247,10 +247,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "category":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -153,9 +153,9 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReaderDiscriminator.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReaderDiscriminator.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
utf8JsonReaderDiscriminator.Read();
|
||||
if (propertyName?.Equals("className") ?? false)
|
||||
if (localVarJsonPropertyName?.Equals("className") ?? false)
|
||||
{
|
||||
string? discriminator = utf8JsonReaderDiscriminator.GetString();
|
||||
if (discriminator?.Equals("BasquePig") ?? false)
|
||||
@ -182,10 +182,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -188,10 +188,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
default:
|
||||
break;
|
||||
|
@ -153,9 +153,9 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReaderDiscriminator.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReaderDiscriminator.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
utf8JsonReaderDiscriminator.Read();
|
||||
if (propertyName?.Equals("quadrilateralType") ?? false)
|
||||
if (localVarJsonPropertyName?.Equals("quadrilateralType") ?? false)
|
||||
{
|
||||
string? discriminator = utf8JsonReaderDiscriminator.GetString();
|
||||
if (discriminator?.Equals("ComplexQuadrilateral") ?? false)
|
||||
@ -182,10 +182,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "quadrilateralType":
|
||||
quadrilateralType = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "quadrilateralType":
|
||||
quadrilateralType = utf8JsonReader.GetString();
|
||||
|
@ -160,10 +160,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "bar":
|
||||
bar = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "return":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "role":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "name":
|
||||
name = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "shapeType":
|
||||
shapeType = utf8JsonReader.GetString();
|
||||
|
@ -153,9 +153,9 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReaderDiscriminator.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReaderDiscriminator.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
utf8JsonReaderDiscriminator.Read();
|
||||
if (propertyName?.Equals("shapeType") ?? false)
|
||||
if (localVarJsonPropertyName?.Equals("shapeType") ?? false)
|
||||
{
|
||||
string? discriminator = utf8JsonReaderDiscriminator.GetString();
|
||||
if (discriminator?.Equals("Quadrilateral") ?? false)
|
||||
@ -182,10 +182,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "shapeType":
|
||||
shapeType = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "shapeType":
|
||||
shapeType = utf8JsonReader.GetString();
|
||||
|
@ -153,9 +153,9 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReaderDiscriminator.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReaderDiscriminator.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
utf8JsonReaderDiscriminator.Read();
|
||||
if (propertyName?.Equals("shapeType") ?? false)
|
||||
if (localVarJsonPropertyName?.Equals("shapeType") ?? false)
|
||||
{
|
||||
string? discriminator = utf8JsonReaderDiscriminator.GetString();
|
||||
if (discriminator?.Equals("Quadrilateral") ?? false)
|
||||
@ -182,10 +182,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "shapeType":
|
||||
shapeType = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "quadrilateralType":
|
||||
quadrilateralType = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "_special_model.name_":
|
||||
varSpecialModelName = utf8JsonReader.GetString();
|
||||
|
@ -124,10 +124,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "id":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "value":
|
||||
value = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "TestCollectionEndingWithWordList":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -172,9 +172,9 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReaderDiscriminator.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReaderDiscriminator.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReaderDiscriminator.GetString();
|
||||
utf8JsonReaderDiscriminator.Read();
|
||||
if (propertyName?.Equals("triangleType") ?? false)
|
||||
if (localVarJsonPropertyName?.Equals("triangleType") ?? false)
|
||||
{
|
||||
string? discriminator = utf8JsonReaderDiscriminator.GetString();
|
||||
if (discriminator?.Equals("EquilateralTriangle") ?? false)
|
||||
@ -206,10 +206,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "triangleType":
|
||||
triangleType = utf8JsonReader.GetString();
|
||||
|
@ -114,10 +114,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "triangleType":
|
||||
triangleType = utf8JsonReader.GetString();
|
||||
|
@ -229,10 +229,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "email":
|
||||
email = utf8JsonReader.GetString();
|
||||
|
@ -134,10 +134,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -215,10 +215,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -180,10 +180,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string? propertyName = utf8JsonReader.GetString();
|
||||
string? localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "ZeroBasedEnum":
|
||||
string? zeroBasedEnumRawValue = utf8JsonReader.GetString();
|
||||
|
@ -112,10 +112,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "activity_outputs":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -122,10 +122,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "prop1":
|
||||
prop1 = utf8JsonReader.GetString();
|
||||
|
@ -183,10 +183,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "empty_map":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -132,10 +132,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -132,10 +132,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "code":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -159,10 +159,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "color_code":
|
||||
colorCode = utf8JsonReader.GetString();
|
||||
|
@ -115,10 +115,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "cultivar":
|
||||
cultivar = utf8JsonReader.GetString();
|
||||
|
@ -112,10 +112,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "ArrayArrayNumber":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -112,10 +112,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "ArrayNumber":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -132,10 +132,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "array_array_of_integer":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -112,10 +112,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "lengthCm":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -115,10 +115,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "lengthCm":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -112,10 +112,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -163,10 +163,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "ATT_NAME":
|
||||
aTTNAME = utf8JsonReader.GetString();
|
||||
|
@ -100,10 +100,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "className":
|
||||
className = utf8JsonReader.GetString();
|
||||
|
@ -122,10 +122,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "id":
|
||||
if (utf8JsonReader.TokenType != JsonTokenType.Null)
|
||||
|
@ -158,10 +158,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "name":
|
||||
name = utf8JsonReader.GetString();
|
||||
|
@ -112,10 +112,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
if (utf8JsonReader.TokenType == JsonTokenType.PropertyName && currentDepth == utf8JsonReader.CurrentDepth - 1)
|
||||
{
|
||||
string propertyName = utf8JsonReader.GetString();
|
||||
string localVarJsonPropertyName = utf8JsonReader.GetString();
|
||||
utf8JsonReader.Read();
|
||||
|
||||
switch (propertyName)
|
||||
switch (localVarJsonPropertyName)
|
||||
{
|
||||
case "_class":
|
||||
varClass = utf8JsonReader.GetString();
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user