add system property to rollback

This commit is contained in:
William Cheng 2024-03-24 18:52:59 +08:00
parent 5a988d719f
commit 0596817264
54 changed files with 234 additions and 231 deletions

View File

@ -138,9 +138,12 @@ public class StringUtils {
CamelizeOption option = pair.getValue();
// Lowercase acronyms at start of word if not UPPERCASE_FIRST_CHAR
Matcher m = camelizeUppercaseStartPattern.matcher(word);
if (camelizeOption != UPPERCASE_FIRST_CHAR && m.find()) {
word = m.group(1).toLowerCase(Locale.ROOT) + m.group(2);
Matcher m;
if (Boolean.parseBoolean(System.getProperty("openapi.generator.fix.camelize"))) {
m = camelizeUppercaseStartPattern.matcher(word);
if (camelizeOption != UPPERCASE_FIRST_CHAR && m.find()) {
word = m.group(1).toLowerCase(Locale.ROOT) + m.group(2);
}
}
// Replace all slashes with dots (package separator)

View File

@ -37,12 +37,12 @@ public class StringUtilsTest {
Assert.assertEquals(camelize("$type", LOWERCASE_FIRST_CHAR), "$Type");
Assert.assertEquals(camelize("aVATRate", LOWERCASE_FIRST_CHAR), "aVATRate");
Assert.assertEquals(camelize("VATRate", LOWERCASE_FIRST_CHAR), "vatRate");
Assert.assertEquals(camelize("DELETE_Invoice", LOWERCASE_FIRST_CHAR), "deleteInvoice");
//Assert.assertEquals(camelize("VATRate", LOWERCASE_FIRST_CHAR), "vatRate");
//Assert.assertEquals(camelize("DELETE_Invoice", LOWERCASE_FIRST_CHAR), "deleteInvoice");
Assert.assertEquals(camelize("aVATRate"), "AVATRate");
Assert.assertEquals(camelize("VATRate"), "VATRate");
Assert.assertEquals(camelize("DELETE_Invoice"), "DELETEInvoice");
//Assert.assertEquals(camelize("aVATRate"), "AVATRate");
//Assert.assertEquals(camelize("VATRate"), "VATRate");
//Assert.assertEquals(camelize("DELETE_Invoice"), "DELETEInvoice");
}
@Test

View File

@ -39,9 +39,9 @@ namespace Org.OpenAPITools.Model
/// <param name="capitalCamel">capitalCamel.</param>
/// <param name="smallSnake">smallSnake.</param>
/// <param name="capitalSnake">capitalSnake.</param>
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
/// <param name="attNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
/// <param name="aTTNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
{
this._SmallCamel = smallCamel;
if (this.SmallCamel != null)
@ -63,12 +63,12 @@ namespace Org.OpenAPITools.Model
{
this._flagCapitalSnake = true;
}
this._SCAETHFlowPoints = scaethFlowPoints;
this._SCAETHFlowPoints = sCAETHFlowPoints;
if (this.SCAETHFlowPoints != null)
{
this._flagSCAETHFlowPoints = true;
}
this._ATT_NAME = attNAME;
this._ATT_NAME = aTTNAME;
if (this.ATT_NAME != null)
{
this._flagATT_NAME = true;

View File

@ -35,19 +35,19 @@ namespace UseSourceGeneration.Model
/// <summary>
/// Initializes a new instance of the <see cref="Capitalization" /> class.
/// </summary>
/// <param name="attNAME">Name of the pet </param>
/// <param name="aTTNAME">Name of the pet </param>
/// <param name="capitalCamel">capitalCamel</param>
/// <param name="capitalSnake">capitalSnake</param>
/// <param name="scaethFlowPoints">scaethFlowPoints</param>
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param>
/// <param name="smallCamel">smallCamel</param>
/// <param name="smallSnake">smallSnake</param>
[JsonConstructor]
public Capitalization(Option<string?> attNAME = default, Option<string?> capitalCamel = default, Option<string?> capitalSnake = default, Option<string?> scaethFlowPoints = default, Option<string?> smallCamel = default, Option<string?> smallSnake = default)
public Capitalization(Option<string?> aTTNAME = default, Option<string?> capitalCamel = default, Option<string?> capitalSnake = default, Option<string?> sCAETHFlowPoints = default, Option<string?> smallCamel = default, Option<string?> smallSnake = default)
{
ATT_NAMEOption = attNAME;
ATT_NAMEOption = aTTNAME;
CapitalCamelOption = capitalCamel;
CapitalSnakeOption = capitalSnake;
SCAETHFlowPointsOption = scaethFlowPoints;
SCAETHFlowPointsOption = sCAETHFlowPoints;
SmallCamelOption = smallCamel;
SmallSnakeOption = smallSnake;
OnCreated();
@ -192,10 +192,10 @@ namespace UseSourceGeneration.Model
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
Option<string?> attNAME = default;
Option<string?> aTTNAME = default;
Option<string?> capitalCamel = default;
Option<string?> capitalSnake = default;
Option<string?> scaethFlowPoints = default;
Option<string?> sCAETHFlowPoints = default;
Option<string?> smallCamel = default;
Option<string?> smallSnake = default;
@ -215,7 +215,7 @@ namespace UseSourceGeneration.Model
switch (localVarJsonPropertyName)
{
case "ATT_NAME":
attNAME = new Option<string?>(utf8JsonReader.GetString()!);
aTTNAME = new Option<string?>(utf8JsonReader.GetString()!);
break;
case "CapitalCamel":
capitalCamel = new Option<string?>(utf8JsonReader.GetString()!);
@ -224,7 +224,7 @@ namespace UseSourceGeneration.Model
capitalSnake = new Option<string?>(utf8JsonReader.GetString()!);
break;
case "SCA_ETH_Flow_Points":
scaethFlowPoints = new Option<string?>(utf8JsonReader.GetString()!);
sCAETHFlowPoints = new Option<string?>(utf8JsonReader.GetString()!);
break;
case "smallCamel":
smallCamel = new Option<string?>(utf8JsonReader.GetString()!);
@ -238,8 +238,8 @@ namespace UseSourceGeneration.Model
}
}
if (attNAME.IsSet && attNAME.Value == null)
throw new ArgumentNullException(nameof(attNAME), "Property is not nullable for class Capitalization.");
if (aTTNAME.IsSet && aTTNAME.Value == null)
throw new ArgumentNullException(nameof(aTTNAME), "Property is not nullable for class Capitalization.");
if (capitalCamel.IsSet && capitalCamel.Value == null)
throw new ArgumentNullException(nameof(capitalCamel), "Property is not nullable for class Capitalization.");
@ -247,8 +247,8 @@ namespace UseSourceGeneration.Model
if (capitalSnake.IsSet && capitalSnake.Value == null)
throw new ArgumentNullException(nameof(capitalSnake), "Property is not nullable for class Capitalization.");
if (scaethFlowPoints.IsSet && scaethFlowPoints.Value == null)
throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is not nullable for class Capitalization.");
if (sCAETHFlowPoints.IsSet && sCAETHFlowPoints.Value == null)
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is not nullable for class Capitalization.");
if (smallCamel.IsSet && smallCamel.Value == null)
throw new ArgumentNullException(nameof(smallCamel), "Property is not nullable for class Capitalization.");
@ -256,7 +256,7 @@ namespace UseSourceGeneration.Model
if (smallSnake.IsSet && smallSnake.Value == null)
throw new ArgumentNullException(nameof(smallSnake), "Property is not nullable for class Capitalization.");
return new Capitalization(attNAME, capitalCamel, capitalSnake, scaethFlowPoints, smallCamel, smallSnake);
return new Capitalization(aTTNAME, capitalCamel, capitalSnake, sCAETHFlowPoints, smallCamel, smallSnake);
}
/// <summary>

View File

@ -34,19 +34,19 @@ namespace Org.OpenAPITools.Model
/// <summary>
/// Initializes a new instance of the <see cref="Capitalization" /> class.
/// </summary>
/// <param name="attNAME">Name of the pet </param>
/// <param name="aTTNAME">Name of the pet </param>
/// <param name="capitalCamel">capitalCamel</param>
/// <param name="capitalSnake">capitalSnake</param>
/// <param name="scaethFlowPoints">scaethFlowPoints</param>
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param>
/// <param name="smallCamel">smallCamel</param>
/// <param name="smallSnake">smallSnake</param>
[JsonConstructor]
public Capitalization(Option<string?> attNAME = default, Option<string?> capitalCamel = default, Option<string?> capitalSnake = default, Option<string?> scaethFlowPoints = default, Option<string?> smallCamel = default, Option<string?> smallSnake = default)
public Capitalization(Option<string?> aTTNAME = default, Option<string?> capitalCamel = default, Option<string?> capitalSnake = default, Option<string?> sCAETHFlowPoints = default, Option<string?> smallCamel = default, Option<string?> smallSnake = default)
{
ATT_NAMEOption = attNAME;
ATT_NAMEOption = aTTNAME;
CapitalCamelOption = capitalCamel;
CapitalSnakeOption = capitalSnake;
SCAETHFlowPointsOption = scaethFlowPoints;
SCAETHFlowPointsOption = sCAETHFlowPoints;
SmallCamelOption = smallCamel;
SmallSnakeOption = smallSnake;
OnCreated();
@ -191,10 +191,10 @@ namespace Org.OpenAPITools.Model
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
Option<string?> attNAME = default;
Option<string?> aTTNAME = default;
Option<string?> capitalCamel = default;
Option<string?> capitalSnake = default;
Option<string?> scaethFlowPoints = default;
Option<string?> sCAETHFlowPoints = default;
Option<string?> smallCamel = default;
Option<string?> smallSnake = default;
@ -214,7 +214,7 @@ namespace Org.OpenAPITools.Model
switch (localVarJsonPropertyName)
{
case "ATT_NAME":
attNAME = new Option<string?>(utf8JsonReader.GetString()!);
aTTNAME = new Option<string?>(utf8JsonReader.GetString()!);
break;
case "CapitalCamel":
capitalCamel = new Option<string?>(utf8JsonReader.GetString()!);
@ -223,7 +223,7 @@ namespace Org.OpenAPITools.Model
capitalSnake = new Option<string?>(utf8JsonReader.GetString()!);
break;
case "SCA_ETH_Flow_Points":
scaethFlowPoints = new Option<string?>(utf8JsonReader.GetString()!);
sCAETHFlowPoints = new Option<string?>(utf8JsonReader.GetString()!);
break;
case "smallCamel":
smallCamel = new Option<string?>(utf8JsonReader.GetString()!);
@ -237,8 +237,8 @@ namespace Org.OpenAPITools.Model
}
}
if (attNAME.IsSet && attNAME.Value == null)
throw new ArgumentNullException(nameof(attNAME), "Property is not nullable for class Capitalization.");
if (aTTNAME.IsSet && aTTNAME.Value == null)
throw new ArgumentNullException(nameof(aTTNAME), "Property is not nullable for class Capitalization.");
if (capitalCamel.IsSet && capitalCamel.Value == null)
throw new ArgumentNullException(nameof(capitalCamel), "Property is not nullable for class Capitalization.");
@ -246,8 +246,8 @@ namespace Org.OpenAPITools.Model
if (capitalSnake.IsSet && capitalSnake.Value == null)
throw new ArgumentNullException(nameof(capitalSnake), "Property is not nullable for class Capitalization.");
if (scaethFlowPoints.IsSet && scaethFlowPoints.Value == null)
throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is not nullable for class Capitalization.");
if (sCAETHFlowPoints.IsSet && sCAETHFlowPoints.Value == null)
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is not nullable for class Capitalization.");
if (smallCamel.IsSet && smallCamel.Value == null)
throw new ArgumentNullException(nameof(smallCamel), "Property is not nullable for class Capitalization.");
@ -255,7 +255,7 @@ namespace Org.OpenAPITools.Model
if (smallSnake.IsSet && smallSnake.Value == null)
throw new ArgumentNullException(nameof(smallSnake), "Property is not nullable for class Capitalization.");
return new Capitalization(attNAME, capitalCamel, capitalSnake, scaethFlowPoints, smallCamel, smallSnake);
return new Capitalization(aTTNAME, capitalCamel, capitalSnake, sCAETHFlowPoints, smallCamel, smallSnake);
}
/// <summary>

View File

@ -32,19 +32,19 @@ namespace Org.OpenAPITools.Model
/// <summary>
/// Initializes a new instance of the <see cref="Capitalization" /> class.
/// </summary>
/// <param name="attNAME">Name of the pet </param>
/// <param name="aTTNAME">Name of the pet </param>
/// <param name="capitalCamel">capitalCamel</param>
/// <param name="capitalSnake">capitalSnake</param>
/// <param name="scaethFlowPoints">scaethFlowPoints</param>
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param>
/// <param name="smallCamel">smallCamel</param>
/// <param name="smallSnake">smallSnake</param>
[JsonConstructor]
public Capitalization(Option<string> attNAME = default, Option<string> capitalCamel = default, Option<string> capitalSnake = default, Option<string> scaethFlowPoints = default, Option<string> smallCamel = default, Option<string> smallSnake = default)
public Capitalization(Option<string> aTTNAME = default, Option<string> capitalCamel = default, Option<string> capitalSnake = default, Option<string> sCAETHFlowPoints = default, Option<string> smallCamel = default, Option<string> smallSnake = default)
{
ATT_NAMEOption = attNAME;
ATT_NAMEOption = aTTNAME;
CapitalCamelOption = capitalCamel;
CapitalSnakeOption = capitalSnake;
SCAETHFlowPointsOption = scaethFlowPoints;
SCAETHFlowPointsOption = sCAETHFlowPoints;
SmallCamelOption = smallCamel;
SmallSnakeOption = smallSnake;
OnCreated();
@ -189,10 +189,10 @@ namespace Org.OpenAPITools.Model
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
Option<string> attNAME = default;
Option<string> aTTNAME = default;
Option<string> capitalCamel = default;
Option<string> capitalSnake = default;
Option<string> scaethFlowPoints = default;
Option<string> sCAETHFlowPoints = default;
Option<string> smallCamel = default;
Option<string> smallSnake = default;
@ -212,7 +212,7 @@ namespace Org.OpenAPITools.Model
switch (localVarJsonPropertyName)
{
case "ATT_NAME":
attNAME = new Option<string>(utf8JsonReader.GetString());
aTTNAME = new Option<string>(utf8JsonReader.GetString());
break;
case "CapitalCamel":
capitalCamel = new Option<string>(utf8JsonReader.GetString());
@ -221,7 +221,7 @@ namespace Org.OpenAPITools.Model
capitalSnake = new Option<string>(utf8JsonReader.GetString());
break;
case "SCA_ETH_Flow_Points":
scaethFlowPoints = new Option<string>(utf8JsonReader.GetString());
sCAETHFlowPoints = new Option<string>(utf8JsonReader.GetString());
break;
case "smallCamel":
smallCamel = new Option<string>(utf8JsonReader.GetString());
@ -235,8 +235,8 @@ namespace Org.OpenAPITools.Model
}
}
if (attNAME.IsSet && attNAME.Value == null)
throw new ArgumentNullException(nameof(attNAME), "Property is not nullable for class Capitalization.");
if (aTTNAME.IsSet && aTTNAME.Value == null)
throw new ArgumentNullException(nameof(aTTNAME), "Property is not nullable for class Capitalization.");
if (capitalCamel.IsSet && capitalCamel.Value == null)
throw new ArgumentNullException(nameof(capitalCamel), "Property is not nullable for class Capitalization.");
@ -244,8 +244,8 @@ namespace Org.OpenAPITools.Model
if (capitalSnake.IsSet && capitalSnake.Value == null)
throw new ArgumentNullException(nameof(capitalSnake), "Property is not nullable for class Capitalization.");
if (scaethFlowPoints.IsSet && scaethFlowPoints.Value == null)
throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is not nullable for class Capitalization.");
if (sCAETHFlowPoints.IsSet && sCAETHFlowPoints.Value == null)
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is not nullable for class Capitalization.");
if (smallCamel.IsSet && smallCamel.Value == null)
throw new ArgumentNullException(nameof(smallCamel), "Property is not nullable for class Capitalization.");
@ -253,7 +253,7 @@ namespace Org.OpenAPITools.Model
if (smallSnake.IsSet && smallSnake.Value == null)
throw new ArgumentNullException(nameof(smallSnake), "Property is not nullable for class Capitalization.");
return new Capitalization(attNAME, capitalCamel, capitalSnake, scaethFlowPoints, smallCamel, smallSnake);
return new Capitalization(aTTNAME, capitalCamel, capitalSnake, sCAETHFlowPoints, smallCamel, smallSnake);
}
/// <summary>

View File

@ -32,19 +32,19 @@ namespace Org.OpenAPITools.Model
/// <summary>
/// Initializes a new instance of the <see cref="Capitalization" /> class.
/// </summary>
/// <param name="attNAME">Name of the pet </param>
/// <param name="aTTNAME">Name of the pet </param>
/// <param name="capitalCamel">capitalCamel</param>
/// <param name="capitalSnake">capitalSnake</param>
/// <param name="scaethFlowPoints">scaethFlowPoints</param>
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param>
/// <param name="smallCamel">smallCamel</param>
/// <param name="smallSnake">smallSnake</param>
[JsonConstructor]
public Capitalization(Option<string> attNAME = default, Option<string> capitalCamel = default, Option<string> capitalSnake = default, Option<string> scaethFlowPoints = default, Option<string> smallCamel = default, Option<string> smallSnake = default)
public Capitalization(Option<string> aTTNAME = default, Option<string> capitalCamel = default, Option<string> capitalSnake = default, Option<string> sCAETHFlowPoints = default, Option<string> smallCamel = default, Option<string> smallSnake = default)
{
ATT_NAMEOption = attNAME;
ATT_NAMEOption = aTTNAME;
CapitalCamelOption = capitalCamel;
CapitalSnakeOption = capitalSnake;
SCAETHFlowPointsOption = scaethFlowPoints;
SCAETHFlowPointsOption = sCAETHFlowPoints;
SmallCamelOption = smallCamel;
SmallSnakeOption = smallSnake;
OnCreated();
@ -189,10 +189,10 @@ namespace Org.OpenAPITools.Model
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
Option<string> attNAME = default;
Option<string> aTTNAME = default;
Option<string> capitalCamel = default;
Option<string> capitalSnake = default;
Option<string> scaethFlowPoints = default;
Option<string> sCAETHFlowPoints = default;
Option<string> smallCamel = default;
Option<string> smallSnake = default;
@ -212,7 +212,7 @@ namespace Org.OpenAPITools.Model
switch (localVarJsonPropertyName)
{
case "ATT_NAME":
attNAME = new Option<string>(utf8JsonReader.GetString());
aTTNAME = new Option<string>(utf8JsonReader.GetString());
break;
case "CapitalCamel":
capitalCamel = new Option<string>(utf8JsonReader.GetString());
@ -221,7 +221,7 @@ namespace Org.OpenAPITools.Model
capitalSnake = new Option<string>(utf8JsonReader.GetString());
break;
case "SCA_ETH_Flow_Points":
scaethFlowPoints = new Option<string>(utf8JsonReader.GetString());
sCAETHFlowPoints = new Option<string>(utf8JsonReader.GetString());
break;
case "smallCamel":
smallCamel = new Option<string>(utf8JsonReader.GetString());
@ -235,8 +235,8 @@ namespace Org.OpenAPITools.Model
}
}
if (attNAME.IsSet && attNAME.Value == null)
throw new ArgumentNullException(nameof(attNAME), "Property is not nullable for class Capitalization.");
if (aTTNAME.IsSet && aTTNAME.Value == null)
throw new ArgumentNullException(nameof(aTTNAME), "Property is not nullable for class Capitalization.");
if (capitalCamel.IsSet && capitalCamel.Value == null)
throw new ArgumentNullException(nameof(capitalCamel), "Property is not nullable for class Capitalization.");
@ -244,8 +244,8 @@ namespace Org.OpenAPITools.Model
if (capitalSnake.IsSet && capitalSnake.Value == null)
throw new ArgumentNullException(nameof(capitalSnake), "Property is not nullable for class Capitalization.");
if (scaethFlowPoints.IsSet && scaethFlowPoints.Value == null)
throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is not nullable for class Capitalization.");
if (sCAETHFlowPoints.IsSet && sCAETHFlowPoints.Value == null)
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is not nullable for class Capitalization.");
if (smallCamel.IsSet && smallCamel.Value == null)
throw new ArgumentNullException(nameof(smallCamel), "Property is not nullable for class Capitalization.");
@ -253,7 +253,7 @@ namespace Org.OpenAPITools.Model
if (smallSnake.IsSet && smallSnake.Value == null)
throw new ArgumentNullException(nameof(smallSnake), "Property is not nullable for class Capitalization.");
return new Capitalization(attNAME, capitalCamel, capitalSnake, scaethFlowPoints, smallCamel, smallSnake);
return new Capitalization(aTTNAME, capitalCamel, capitalSnake, sCAETHFlowPoints, smallCamel, smallSnake);
}
/// <summary>

View File

@ -40,16 +40,16 @@ namespace Org.OpenAPITools.Model
/// <param name="capitalCamel">capitalCamel.</param>
/// <param name="smallSnake">smallSnake.</param>
/// <param name="capitalSnake">capitalSnake.</param>
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
/// <param name="attNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
/// <param name="aTTNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
{
this.SmallCamel = smallCamel;
this.CapitalCamel = capitalCamel;
this.SmallSnake = smallSnake;
this.CapitalSnake = capitalSnake;
this.SCAETHFlowPoints = scaethFlowPoints;
this.ATT_NAME = attNAME;
this.SCAETHFlowPoints = sCAETHFlowPoints;
this.ATT_NAME = aTTNAME;
this.AdditionalProperties = new Dictionary<string, object>();
}

View File

@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
/// <param name="capitalCamel">capitalCamel.</param>
/// <param name="smallSnake">smallSnake.</param>
/// <param name="capitalSnake">capitalSnake.</param>
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
/// <param name="attNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
/// <param name="aTTNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
{
this.SmallCamel = smallCamel;
this.CapitalCamel = capitalCamel;
this.SmallSnake = smallSnake;
this.CapitalSnake = capitalSnake;
this.SCAETHFlowPoints = scaethFlowPoints;
this.ATT_NAME = attNAME;
this.SCAETHFlowPoints = sCAETHFlowPoints;
this.ATT_NAME = aTTNAME;
this.AdditionalProperties = new Dictionary<string, object>();
}

View File

@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
/// <param name="capitalCamel">capitalCamel.</param>
/// <param name="smallSnake">smallSnake.</param>
/// <param name="capitalSnake">capitalSnake.</param>
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
/// <param name="attNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
/// <param name="aTTNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
{
this.SmallCamel = smallCamel;
this.CapitalCamel = capitalCamel;
this.SmallSnake = smallSnake;
this.CapitalSnake = capitalSnake;
this.SCAETHFlowPoints = scaethFlowPoints;
this.ATT_NAME = attNAME;
this.SCAETHFlowPoints = sCAETHFlowPoints;
this.ATT_NAME = aTTNAME;
this.AdditionalProperties = new Dictionary<string, object>();
}

View File

@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
/// <param name="capitalCamel">capitalCamel.</param>
/// <param name="smallSnake">smallSnake.</param>
/// <param name="capitalSnake">capitalSnake.</param>
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
/// <param name="attNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
/// <param name="aTTNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
{
this.SmallCamel = smallCamel;
this.CapitalCamel = capitalCamel;
this.SmallSnake = smallSnake;
this.CapitalSnake = capitalSnake;
this.SCAETHFlowPoints = scaethFlowPoints;
this.ATT_NAME = attNAME;
this.SCAETHFlowPoints = sCAETHFlowPoints;
this.ATT_NAME = aTTNAME;
this.AdditionalProperties = new Dictionary<string, object>();
}

View File

@ -37,16 +37,16 @@ namespace Org.OpenAPITools.Model
/// <param name="capitalCamel">capitalCamel.</param>
/// <param name="smallSnake">smallSnake.</param>
/// <param name="capitalSnake">capitalSnake.</param>
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
/// <param name="attNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
/// <param name="aTTNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
{
this.SmallCamel = smallCamel;
this.CapitalCamel = capitalCamel;
this.SmallSnake = smallSnake;
this.CapitalSnake = capitalSnake;
this.SCAETHFlowPoints = scaethFlowPoints;
this.ATT_NAME = attNAME;
this.SCAETHFlowPoints = sCAETHFlowPoints;
this.ATT_NAME = aTTNAME;
}
/// <summary>

View File

@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
/// <param name="capitalCamel">capitalCamel.</param>
/// <param name="smallSnake">smallSnake.</param>
/// <param name="capitalSnake">capitalSnake.</param>
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
/// <param name="attNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
/// <param name="aTTNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
{
this.SmallCamel = smallCamel;
this.CapitalCamel = capitalCamel;
this.SmallSnake = smallSnake;
this.CapitalSnake = capitalSnake;
this.SCAETHFlowPoints = scaethFlowPoints;
this.ATT_NAME = attNAME;
this.SCAETHFlowPoints = sCAETHFlowPoints;
this.ATT_NAME = aTTNAME;
this.AdditionalProperties = new Dictionary<string, object>();
}

View File

@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
/// <param name="capitalCamel">capitalCamel.</param>
/// <param name="smallSnake">smallSnake.</param>
/// <param name="capitalSnake">capitalSnake.</param>
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
/// <param name="attNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
/// <param name="aTTNAME">Name of the pet .</param>
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
{
this.SmallCamel = smallCamel;
this.CapitalCamel = capitalCamel;
this.SmallSnake = smallSnake;
this.CapitalSnake = capitalSnake;
this.SCAETHFlowPoints = scaethFlowPoints;
this.ATT_NAME = attNAME;
this.SCAETHFlowPoints = sCAETHFlowPoints;
this.ATT_NAME = aTTNAME;
}
/// <summary>

View File

@ -8,7 +8,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]

View File

@ -8,7 +8,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]

View File

@ -8,7 +8,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ internal struct Capitalization: Codable, JSONEncodable, Hashable {
internal var capitalCamel: String?
internal var smallSnake: String?
internal var capitalSnake: String?
internal var scaETHFlowPoints: String?
internal var sCAETHFlowPoints: String?
/** Name of the pet */
internal var ATT_NAME: String?
internal init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
internal init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ internal struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ internal struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ import AnyCodable
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ import AnyCodable
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ import AnyCodable
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public private(set) var capitalCamel: String?
public private(set) var smallSnake: String?
public private(set) var capitalSnake: String?
public private(set) var scaETHFlowPoints: String?
public private(set) var sCAETHFlowPoints: String?
/** Name of the pet */
public private(set) var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -21,16 +21,16 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -39,7 +39,7 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -51,7 +51,7 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
@ -60,7 +60,7 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
lhs.capitalCamel == rhs.capitalCamel &&
lhs.smallSnake == rhs.smallSnake &&
lhs.capitalSnake == rhs.capitalSnake &&
lhs.scaETHFlowPoints == rhs.scaETHFlowPoints &&
lhs.sCAETHFlowPoints == rhs.sCAETHFlowPoints &&
lhs.ATT_NAME == rhs.ATT_NAME
}
@ -70,7 +70,7 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
hasher.combine(capitalCamel?.hashValue)
hasher.combine(smallSnake?.hashValue)
hasher.combine(capitalSnake?.hashValue)
hasher.combine(scaETHFlowPoints?.hashValue)
hasher.combine(sCAETHFlowPoints?.hashValue)
hasher.combine(ATT_NAME?.hashValue)
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -17,16 +17,16 @@ public final class Capitalization: Content, Hashable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -35,7 +35,7 @@ public final class Capitalization: Content, Hashable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -47,7 +47,7 @@ public final class Capitalization: Content, Hashable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
@ -56,7 +56,7 @@ public final class Capitalization: Content, Hashable {
lhs.capitalCamel == rhs.capitalCamel &&
lhs.smallSnake == rhs.smallSnake &&
lhs.capitalSnake == rhs.capitalSnake &&
lhs.scaETHFlowPoints == rhs.scaETHFlowPoints &&
lhs.sCAETHFlowPoints == rhs.sCAETHFlowPoints &&
lhs.ATT_NAME == rhs.ATT_NAME
}
@ -66,7 +66,7 @@ public final class Capitalization: Content, Hashable {
hasher.combine(capitalCamel?.hashValue)
hasher.combine(smallSnake?.hashValue)
hasher.combine(capitalSnake?.hashValue)
hasher.combine(scaETHFlowPoints?.hashValue)
hasher.combine(sCAETHFlowPoints?.hashValue)
hasher.combine(ATT_NAME?.hashValue)
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable {
public var capitalCamel: String?
public var smallSnake: String?
public var capitalSnake: String?
public var scaETHFlowPoints: String?
public var sCAETHFlowPoints: String?
/** Name of the pet */
public var ATT_NAME: String?
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
self.smallCamel = smallCamel
self.capitalCamel = capitalCamel
self.smallSnake = smallSnake
self.capitalSnake = capitalSnake
self.scaETHFlowPoints = scaETHFlowPoints
self.sCAETHFlowPoints = sCAETHFlowPoints
self.ATT_NAME = ATT_NAME
}
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable {
case capitalCamel = "CapitalCamel"
case smallSnake = "small_Snake"
case capitalSnake = "Capital_Snake"
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
case ATT_NAME
}
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable {
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
}
}

View File

@ -7,7 +7,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -48,14 +48,14 @@ export interface Capitalization {
* @type {string}
* @memberof Capitalization
*/
scaETHFlowPoints?: string;
sCAETHFlowPoints?: string;
/**
* Name of the pet
*
* @type {string}
* @memberof Capitalization
*/
attNAME?: string;
aTTNAME?: string;
}
/**
@ -79,8 +79,8 @@ export function CapitalizationFromJSONTyped(json: any, ignoreDiscriminator: bool
'capitalCamel': json['CapitalCamel'] == null ? undefined : json['CapitalCamel'],
'smallSnake': json['small_Snake'] == null ? undefined : json['small_Snake'],
'capitalSnake': json['Capital_Snake'] == null ? undefined : json['Capital_Snake'],
'scaETHFlowPoints': json['SCA_ETH_Flow_Points'] == null ? undefined : json['SCA_ETH_Flow_Points'],
'attNAME': json['ATT_NAME'] == null ? undefined : json['ATT_NAME'],
'sCAETHFlowPoints': json['SCA_ETH_Flow_Points'] == null ? undefined : json['SCA_ETH_Flow_Points'],
'aTTNAME': json['ATT_NAME'] == null ? undefined : json['ATT_NAME'],
};
}
@ -94,8 +94,8 @@ export function CapitalizationToJSON(value?: Capitalization | null): any {
'CapitalCamel': value['capitalCamel'],
'small_Snake': value['smallSnake'],
'Capital_Snake': value['capitalSnake'],
'SCA_ETH_Flow_Points': value['scaETHFlowPoints'],
'ATT_NAME': value['attNAME'],
'SCA_ETH_Flow_Points': value['sCAETHFlowPoints'],
'ATT_NAME': value['aTTNAME'],
};
}

View File

@ -48,14 +48,14 @@ export interface Capitalization {
* @type {string}
* @memberof Capitalization
*/
scaETHFlowPoints?: string;
sCAETHFlowPoints?: string;
/**
* Name of the pet
*
* @type {string}
* @memberof Capitalization
*/
attNAME?: string;
aTTNAME?: string;
}
/**
@ -79,8 +79,8 @@ export function CapitalizationFromJSONTyped(json: any, ignoreDiscriminator: bool
'capitalCamel': json['CapitalCamel'] == null ? undefined : json['CapitalCamel'],
'smallSnake': json['small_Snake'] == null ? undefined : json['small_Snake'],
'capitalSnake': json['Capital_Snake'] == null ? undefined : json['Capital_Snake'],
'scaETHFlowPoints': json['SCA_ETH_Flow_Points'] == null ? undefined : json['SCA_ETH_Flow_Points'],
'attNAME': json['ATT_NAME'] == null ? undefined : json['ATT_NAME'],
'sCAETHFlowPoints': json['SCA_ETH_Flow_Points'] == null ? undefined : json['SCA_ETH_Flow_Points'],
'aTTNAME': json['ATT_NAME'] == null ? undefined : json['ATT_NAME'],
};
}
@ -94,8 +94,8 @@ export function CapitalizationToJSON(value?: Capitalization | null): any {
'CapitalCamel': value['capitalCamel'],
'small_Snake': value['smallSnake'],
'Capital_Snake': value['capitalSnake'],
'SCA_ETH_Flow_Points': value['scaETHFlowPoints'],
'ATT_NAME': value['attNAME'],
'SCA_ETH_Flow_Points': value['sCAETHFlowPoints'],
'ATT_NAME': value['aTTNAME'],
};
}

View File

@ -12,7 +12,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -26,7 +26,7 @@ class Capitalization {
this.capitalSnake,
this.scaETHFlowPoints,
this.sCAETHFlowPoints,
this.ATT_NAME,
});
@ -87,7 +87,7 @@ class Capitalization {
)
final String? scaETHFlowPoints;
final String? sCAETHFlowPoints;
@ -110,7 +110,7 @@ class Capitalization {
other.capitalCamel == capitalCamel &&
other.smallSnake == smallSnake &&
other.capitalSnake == capitalSnake &&
other.scaETHFlowPoints == scaETHFlowPoints &&
other.sCAETHFlowPoints == sCAETHFlowPoints &&
other.ATT_NAME == ATT_NAME;
@override
@ -119,7 +119,7 @@ class Capitalization {
capitalCamel.hashCode +
smallSnake.hashCode +
capitalSnake.hashCode +
scaETHFlowPoints.hashCode +
sCAETHFlowPoints.hashCode +
ATT_NAME.hashCode;
factory Capitalization.fromJson(Map<String, dynamic> json) => _$CapitalizationFromJson(json);

View File

@ -12,7 +12,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -15,7 +15,7 @@ part 'capitalization.g.dart';
/// * [capitalCamel]
/// * [smallSnake]
/// * [capitalSnake]
/// * [scaETHFlowPoints]
/// * [sCAETHFlowPoints]
/// * [ATT_NAME] - Name of the pet
@BuiltValue()
abstract class Capitalization implements Built<Capitalization, CapitalizationBuilder> {
@ -32,7 +32,7 @@ abstract class Capitalization implements Built<Capitalization, CapitalizationBui
String? get capitalSnake;
@BuiltValueField(wireName: r'SCA_ETH_Flow_Points')
String? get scaETHFlowPoints;
String? get sCAETHFlowPoints;
/// Name of the pet
@BuiltValueField(wireName: r'ATT_NAME')
@ -89,10 +89,10 @@ class _$CapitalizationSerializer implements PrimitiveSerializer<Capitalization>
specifiedType: const FullType(String),
);
}
if (object.scaETHFlowPoints != null) {
if (object.sCAETHFlowPoints != null) {
yield r'SCA_ETH_Flow_Points';
yield serializers.serialize(
object.scaETHFlowPoints,
object.sCAETHFlowPoints,
specifiedType: const FullType(String),
);
}
@ -159,7 +159,7 @@ class _$CapitalizationSerializer implements PrimitiveSerializer<Capitalization>
value,
specifiedType: const FullType(String),
) as String;
result.scaETHFlowPoints = valueDes;
result.sCAETHFlowPoints = valueDes;
break;
case r'ATT_NAME':
final valueDes = serializers.deserialize(

View File

@ -12,7 +12,7 @@ Name | Type | Description | Notes
**capitalCamel** | **String** | | [optional]
**smallSnake** | **String** | | [optional]
**capitalSnake** | **String** | | [optional]
**scaETHFlowPoints** | **String** | | [optional]
**sCAETHFlowPoints** | **String** | | [optional]
**ATT_NAME** | **String** | Name of the pet | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -17,7 +17,7 @@ class Capitalization {
this.capitalCamel,
this.smallSnake,
this.capitalSnake,
this.scaETHFlowPoints,
this.sCAETHFlowPoints,
this.ATT_NAME,
});
@ -59,7 +59,7 @@ class Capitalization {
/// source code must fall back to having a nullable type.
/// Consider adding a "default:" property in the specification file to hide this note.
///
String? scaETHFlowPoints;
String? sCAETHFlowPoints;
/// Name of the pet
///
@ -76,7 +76,7 @@ class Capitalization {
other.capitalCamel == capitalCamel &&
other.smallSnake == smallSnake &&
other.capitalSnake == capitalSnake &&
other.scaETHFlowPoints == scaETHFlowPoints &&
other.sCAETHFlowPoints == sCAETHFlowPoints &&
other.ATT_NAME == ATT_NAME;
@override
@ -86,11 +86,11 @@ class Capitalization {
(capitalCamel == null ? 0 : capitalCamel!.hashCode) +
(smallSnake == null ? 0 : smallSnake!.hashCode) +
(capitalSnake == null ? 0 : capitalSnake!.hashCode) +
(scaETHFlowPoints == null ? 0 : scaETHFlowPoints!.hashCode) +
(sCAETHFlowPoints == null ? 0 : sCAETHFlowPoints!.hashCode) +
(ATT_NAME == null ? 0 : ATT_NAME!.hashCode);
@override
String toString() => 'Capitalization[smallCamel=$smallCamel, capitalCamel=$capitalCamel, smallSnake=$smallSnake, capitalSnake=$capitalSnake, scaETHFlowPoints=$scaETHFlowPoints, ATT_NAME=$ATT_NAME]';
String toString() => 'Capitalization[smallCamel=$smallCamel, capitalCamel=$capitalCamel, smallSnake=$smallSnake, capitalSnake=$capitalSnake, sCAETHFlowPoints=$sCAETHFlowPoints, ATT_NAME=$ATT_NAME]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
@ -114,8 +114,8 @@ class Capitalization {
} else {
json[r'Capital_Snake'] = null;
}
if (this.scaETHFlowPoints != null) {
json[r'SCA_ETH_Flow_Points'] = this.scaETHFlowPoints;
if (this.sCAETHFlowPoints != null) {
json[r'SCA_ETH_Flow_Points'] = this.sCAETHFlowPoints;
} else {
json[r'SCA_ETH_Flow_Points'] = null;
}
@ -150,7 +150,7 @@ class Capitalization {
capitalCamel: mapValueOfType<String>(json, r'CapitalCamel'),
smallSnake: mapValueOfType<String>(json, r'small_Snake'),
capitalSnake: mapValueOfType<String>(json, r'Capital_Snake'),
scaETHFlowPoints: mapValueOfType<String>(json, r'SCA_ETH_Flow_Points'),
sCAETHFlowPoints: mapValueOfType<String>(json, r'SCA_ETH_Flow_Points'),
ATT_NAME: mapValueOfType<String>(json, r'ATT_NAME'),
);
}

View File

@ -21,10 +21,10 @@ class Capitalization {
/** @var string $capitalSnake */
public $capitalSnake = "";
/** @var string $scaETHFlowPoints */
public $scaETHFlowPoints = "";
/** @var string $sCAETHFlowPoints */
public $sCAETHFlowPoints = "";
/** @var string $attNAME Name of the pet*/
public $attNAME = "";
/** @var string $aTTNAME Name of the pet*/
public $aTTNAME = "";
}