update samples, update html doc

This commit is contained in:
William Cheng 2021-09-09 12:09:38 +08:00
parent 4626b185fe
commit 1231b1ab04
96 changed files with 668 additions and 286 deletions

View File

@ -690,7 +690,7 @@ public class ApiClient extends JavaTimeFormatter {
* @param headerParams The header parameters * @param headerParams The header parameters
* @param cookieParams the cookie parameters * @param cookieParams the cookie parameters
*/ */
private void updateParamsForAuth(String[] authNames, MultiValueMap<String, String> queryParams, HttpHeaders headerParams, MultiValueMap<String, String> cookieParams) { protected void updateParamsForAuth(String[] authNames, MultiValueMap<String, String> queryParams, HttpHeaders headerParams, MultiValueMap<String, String> cookieParams) {
for (String authName : authNames) { for (String authName : authNames) {
Authentication auth = authentications.get(authName); Authentication auth = authentications.get(authName);
if (auth == null) { if (auth == null) {

View File

@ -711,7 +711,7 @@ public class ApiClient extends JavaTimeFormatter {
* @param headerParams The header parameters * @param headerParams The header parameters
* @param cookieParams the cookie parameters * @param cookieParams the cookie parameters
*/ */
private void updateParamsForAuth(String[] authNames, MultiValueMap<String, String> queryParams, HttpHeaders headerParams, MultiValueMap<String, String> cookieParams) { protected void updateParamsForAuth(String[] authNames, MultiValueMap<String, String> queryParams, HttpHeaders headerParams, MultiValueMap<String, String> cookieParams) {
for (String authName : authNames) { for (String authName : authNames) {
Authentication auth = authentications.get(authName); Authentication auth = authentications.get(authName);
if (auth == null) { if (auth == null) {

View File

@ -1 +1 @@
5.0.0-SNAPSHOT 5.3.0-SNAPSHOT

View File

@ -180,7 +180,7 @@ font-style: italic;
</head> </head>
<body> <body>
<h1>An <em>API</em> with more <strong>Markdown</strong> in summary, description, and other text</h1> <h1>An <em>API</em> with more <strong>Markdown</strong> in summary, description, and other text</h1>
<div class="app-desc"><p>Not really a <em>pseudo-randum</em> number generator API. This API uses <a href="http://daringfireball.net/projects/markdown/syntax">Markdown</a> in text:</p> <div class="app-desc"><p>Not really a <em>pseudo-random</em> number generator API. This API uses <a href="http://daringfireball.net/projects/markdown/syntax">Markdown</a> in text:</p>
<ol> <ol>
<li>in this API description</li> <li>in this API description</li>
<li>in operation summaries</li> <li>in operation summaries</li>

View File

@ -1 +1 @@
5.0.0-SNAPSHOT 5.3.0-SNAPSHOT

View File

@ -1323,8 +1323,6 @@ font-style: italic;
<li><a href="#Pet"><code>Pet</code> - a Pet</a></li> <li><a href="#Pet"><code>Pet</code> - a Pet</a></li>
<li><a href="#Tag"><code>Tag</code> - Pet Tag</a></li> <li><a href="#Tag"><code>Tag</code> - Pet Tag</a></li>
<li><a href="#User"><code>User</code> - a User</a></li> <li><a href="#User"><code>User</code> - a User</a></li>
<li><a href="#inline_object"><code>inline_object</code> - </a></li>
<li><a href="#inline_object_1"><code>inline_object_1</code> - </a></li>
</ol> </ol>
<div class="model"> <div class="model">
@ -1394,21 +1392,5 @@ font-style: italic;
<div class="param">userStatus (optional)</div><div class="param-desc"><span class="param-type"><a href="#integer">Integer</a></span> User Status format: int32</div> <div class="param">userStatus (optional)</div><div class="param-desc"><span class="param-type"><a href="#integer">Integer</a></span> User Status format: int32</div>
</div> <!-- field-items --> </div> <!-- field-items -->
</div> </div>
<div class="model">
<h3><a name="inline_object"><code>inline_object</code> - </a> <a class="up" href="#__Models">Up</a></h3>
<div class='model-description'></div>
<div class="field-items">
<div class="param">name (optional)</div><div class="param-desc"><span class="param-type"><a href="#string">String</a></span> Updated name of the pet </div>
<div class="param">status (optional)</div><div class="param-desc"><span class="param-type"><a href="#string">String</a></span> Updated status of the pet </div>
</div> <!-- field-items -->
</div>
<div class="model">
<h3><a name="inline_object_1"><code>inline_object_1</code> - </a> <a class="up" href="#__Models">Up</a></h3>
<div class='model-description'></div>
<div class="field-items">
<div class="param">additionalMetadata (optional)</div><div class="param-desc"><span class="param-type"><a href="#string">String</a></span> Additional data to pass to server </div>
<div class="param">file (optional)</div><div class="param-desc"><span class="param-type"><a href="#file">File</a></span> file to upload format: binary</div>
</div> <!-- field-items -->
</div>
</body> </body>
</html> </html>

View File

@ -1 +1 @@
5.0.0-SNAPSHOT 5.3.0-SNAPSHOT

File diff suppressed because one or more lines are too long

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -48,6 +48,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapString; return mapString;
} }
@JsonProperty("map_string")
public void setMapString(Map<String, String> mapString) { public void setMapString(Map<String, String> mapString) {
this.mapString = mapString; this.mapString = mapString;
} }
@ -68,6 +69,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapNumber; return mapNumber;
} }
@JsonProperty("map_number")
public void setMapNumber(Map<String, BigDecimal> mapNumber) { public void setMapNumber(Map<String, BigDecimal> mapNumber) {
this.mapNumber = mapNumber; this.mapNumber = mapNumber;
} }
@ -88,6 +90,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapInteger; return mapInteger;
} }
@JsonProperty("map_integer")
public void setMapInteger(Map<String, Integer> mapInteger) { public void setMapInteger(Map<String, Integer> mapInteger) {
this.mapInteger = mapInteger; this.mapInteger = mapInteger;
} }
@ -108,6 +111,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapBoolean; return mapBoolean;
} }
@JsonProperty("map_boolean")
public void setMapBoolean(Map<String, Boolean> mapBoolean) { public void setMapBoolean(Map<String, Boolean> mapBoolean) {
this.mapBoolean = mapBoolean; this.mapBoolean = mapBoolean;
} }
@ -128,6 +132,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapArrayInteger; return mapArrayInteger;
} }
@JsonProperty("map_array_integer")
public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) { public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
this.mapArrayInteger = mapArrayInteger; this.mapArrayInteger = mapArrayInteger;
} }
@ -148,6 +153,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapArrayAnytype; return mapArrayAnytype;
} }
@JsonProperty("map_array_anytype")
public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) { public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
this.mapArrayAnytype = mapArrayAnytype; this.mapArrayAnytype = mapArrayAnytype;
} }
@ -168,6 +174,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapMapString; return mapMapString;
} }
@JsonProperty("map_map_string")
public void setMapMapString(Map<String, Map<String, String>> mapMapString) { public void setMapMapString(Map<String, Map<String, String>> mapMapString) {
this.mapMapString = mapMapString; this.mapMapString = mapMapString;
} }
@ -188,6 +195,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapMapAnytype; return mapMapAnytype;
} }
@JsonProperty("map_map_anytype")
public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) { public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
this.mapMapAnytype = mapMapAnytype; this.mapMapAnytype = mapMapAnytype;
} }
@ -208,6 +216,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return anytype1; return anytype1;
} }
@JsonProperty("anytype_1")
public void setAnytype1(Object anytype1) { public void setAnytype1(Object anytype1) {
this.anytype1 = anytype1; this.anytype1 = anytype1;
} }
@ -228,6 +237,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return anytype2; return anytype2;
} }
@JsonProperty("anytype_2")
public void setAnytype2(Object anytype2) { public void setAnytype2(Object anytype2) {
this.anytype2 = anytype2; this.anytype2 = anytype2;
} }
@ -248,6 +258,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return anytype3; return anytype3;
} }
@JsonProperty("anytype_3")
public void setAnytype3(Object anytype3) { public void setAnytype3(Object anytype3) {
this.anytype3 = anytype3; this.anytype3 = anytype3;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -44,6 +44,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return className; return className;
} }
@JsonProperty("className")
public void setClassName(String className) { public void setClassName(String className) {
this.className = className; this.className = className;
} }
@ -64,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return color; return color;
} }
@JsonProperty("color")
public void setColor(String color) { public void setColor(String color) {
this.color = color; this.color = color;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayArrayNumber; return arrayArrayNumber;
} }
@JsonProperty("ArrayArrayNumber")
public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) { public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) {
this.arrayArrayNumber = arrayArrayNumber; this.arrayArrayNumber = arrayArrayNumber;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayNumber; return arrayNumber;
} }
@JsonProperty("ArrayNumber")
public void setArrayNumber(List<BigDecimal> arrayNumber) { public void setArrayNumber(List<BigDecimal> arrayNumber) {
this.arrayNumber = arrayNumber; this.arrayNumber = arrayNumber;
} }

View File

@ -39,6 +39,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayOfString; return arrayOfString;
} }
@JsonProperty("array_of_string")
public void setArrayOfString(List<String> arrayOfString) { public void setArrayOfString(List<String> arrayOfString) {
this.arrayOfString = arrayOfString; this.arrayOfString = arrayOfString;
} }
@ -59,6 +60,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayArrayOfInteger; return arrayArrayOfInteger;
} }
@JsonProperty("array_array_of_integer")
public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) { public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
this.arrayArrayOfInteger = arrayArrayOfInteger; this.arrayArrayOfInteger = arrayArrayOfInteger;
} }
@ -79,6 +81,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayArrayOfModel; return arrayArrayOfModel;
} }
@JsonProperty("array_array_of_model")
public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) { public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
this.arrayArrayOfModel = arrayArrayOfModel; this.arrayArrayOfModel = arrayArrayOfModel;
} }

View File

@ -69,6 +69,7 @@ public enum KindEnum {
return kind; return kind;
} }
@JsonProperty("kind")
public void setKind(KindEnum kind) { public void setKind(KindEnum kind) {
this.kind = kind; this.kind = kind;
} }

View File

@ -67,6 +67,7 @@ public enum KindEnum {
return kind; return kind;
} }
@JsonProperty("kind")
public void setKind(KindEnum kind) { public void setKind(KindEnum kind) {
this.kind = kind; this.kind = kind;
} }

View File

@ -39,6 +39,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return smallCamel; return smallCamel;
} }
@JsonProperty("smallCamel")
public void setSmallCamel(String smallCamel) { public void setSmallCamel(String smallCamel) {
this.smallCamel = smallCamel; this.smallCamel = smallCamel;
} }
@ -59,6 +60,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return capitalCamel; return capitalCamel;
} }
@JsonProperty("CapitalCamel")
public void setCapitalCamel(String capitalCamel) { public void setCapitalCamel(String capitalCamel) {
this.capitalCamel = capitalCamel; this.capitalCamel = capitalCamel;
} }
@ -79,6 +81,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return smallSnake; return smallSnake;
} }
@JsonProperty("small_Snake")
public void setSmallSnake(String smallSnake) { public void setSmallSnake(String smallSnake) {
this.smallSnake = smallSnake; this.smallSnake = smallSnake;
} }
@ -99,6 +102,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return capitalSnake; return capitalSnake;
} }
@JsonProperty("Capital_Snake")
public void setCapitalSnake(String capitalSnake) { public void setCapitalSnake(String capitalSnake) {
this.capitalSnake = capitalSnake; this.capitalSnake = capitalSnake;
} }
@ -119,6 +123,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return scAETHFlowPoints; return scAETHFlowPoints;
} }
@JsonProperty("SCA_ETH_Flow_Points")
public void setScAETHFlowPoints(String scAETHFlowPoints) { public void setScAETHFlowPoints(String scAETHFlowPoints) {
this.scAETHFlowPoints = scAETHFlowPoints; this.scAETHFlowPoints = scAETHFlowPoints;
} }
@ -140,6 +145,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return ATT_NAME; return ATT_NAME;
} }
@JsonProperty("ATT_NAME")
public void setATTNAME(String ATT_NAME) { public void setATTNAME(String ATT_NAME) {
this.ATT_NAME = ATT_NAME; this.ATT_NAME = ATT_NAME;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return declawed; return declawed;
} }
@JsonProperty("declawed")
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return declawed; return declawed;
} }
@JsonProperty("declawed")
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -56,6 +57,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return propertyClass; return propertyClass;
} }
@JsonProperty("_class")
public void setPropertyClass(String propertyClass) { public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;
} }

View File

@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return client; return client;
} }
@JsonProperty("client")
public void setClient(String client) { public void setClient(String client) {
this.client = client; this.client = client;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return breed; return breed;
} }
@JsonProperty("breed")
public void setBreed(String breed) { public void setBreed(String breed) {
this.breed = breed; this.breed = breed;
} }

View File

@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return breed; return breed;
} }
@JsonProperty("breed")
public void setBreed(String breed) { public void setBreed(String breed) {
this.breed = breed; this.breed = breed;
} }

View File

@ -103,6 +103,7 @@ public enum ArrayEnumEnum {
return justSymbol; return justSymbol;
} }
@JsonProperty("just_symbol")
public void setJustSymbol(JustSymbolEnum justSymbol) { public void setJustSymbol(JustSymbolEnum justSymbol) {
this.justSymbol = justSymbol; this.justSymbol = justSymbol;
} }
@ -123,6 +124,7 @@ public enum ArrayEnumEnum {
return arrayEnum; return arrayEnum;
} }
@JsonProperty("array_enum")
public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) { public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) {
this.arrayEnum = arrayEnum; this.arrayEnum = arrayEnum;
} }

View File

@ -171,6 +171,7 @@ public enum EnumNumberEnum {
return enumString; return enumString;
} }
@JsonProperty("enum_string")
public void setEnumString(EnumStringEnum enumString) { public void setEnumString(EnumStringEnum enumString) {
this.enumString = enumString; this.enumString = enumString;
} }
@ -192,6 +193,7 @@ public enum EnumNumberEnum {
return enumStringRequired; return enumStringRequired;
} }
@JsonProperty("enum_string_required")
public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) { public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) {
this.enumStringRequired = enumStringRequired; this.enumStringRequired = enumStringRequired;
} }
@ -212,6 +214,7 @@ public enum EnumNumberEnum {
return enumInteger; return enumInteger;
} }
@JsonProperty("enum_integer")
public void setEnumInteger(EnumIntegerEnum enumInteger) { public void setEnumInteger(EnumIntegerEnum enumInteger) {
this.enumInteger = enumInteger; this.enumInteger = enumInteger;
} }
@ -232,6 +235,7 @@ public enum EnumNumberEnum {
return enumNumber; return enumNumber;
} }
@JsonProperty("enum_number")
public void setEnumNumber(EnumNumberEnum enumNumber) { public void setEnumNumber(EnumNumberEnum enumNumber) {
this.enumNumber = enumNumber; this.enumNumber = enumNumber;
} }
@ -252,6 +256,7 @@ public enum EnumNumberEnum {
return outerEnum; return outerEnum;
} }
@JsonProperty("outerEnum")
public void setOuterEnum(OuterEnum outerEnum) { public void setOuterEnum(OuterEnum outerEnum) {
this.outerEnum = outerEnum; this.outerEnum = outerEnum;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return file; return file;
} }
@JsonProperty("file")
public void setFile(java.io.File file) { public void setFile(java.io.File file) {
this.file = file; this.file = file;
} }
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return files; return files;
} }
@JsonProperty("files")
public void setFiles(List<java.io.File> files) { public void setFiles(List<java.io.File> files) {
this.files = files; this.files = files;
} }

View File

@ -54,6 +54,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return integer; return integer;
} }
@JsonProperty("integer")
public void setInteger(Integer integer) { public void setInteger(Integer integer) {
this.integer = integer; this.integer = integer;
} }
@ -76,6 +77,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return int32; return int32;
} }
@JsonProperty("int32")
public void setInt32(Integer int32) { public void setInt32(Integer int32) {
this.int32 = int32; this.int32 = int32;
} }
@ -96,6 +98,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return int64; return int64;
} }
@JsonProperty("int64")
public void setInt64(Long int64) { public void setInt64(Long int64) {
this.int64 = int64; this.int64 = int64;
} }
@ -119,6 +122,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return number; return number;
} }
@JsonProperty("number")
public void setNumber(BigDecimal number) { public void setNumber(BigDecimal number) {
this.number = number; this.number = number;
} }
@ -141,6 +145,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _float; return _float;
} }
@JsonProperty("float")
public void setFloat(Float _float) { public void setFloat(Float _float) {
this._float = _float; this._float = _float;
} }
@ -163,6 +168,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _double; return _double;
} }
@JsonProperty("double")
public void setDouble(Double _double) { public void setDouble(Double _double) {
this._double = _double; this._double = _double;
} }
@ -183,6 +189,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return string; return string;
} }
@JsonProperty("string")
public void setString(String string) { public void setString(String string) {
this.string = string; this.string = string;
} }
@ -204,6 +211,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _byte; return _byte;
} }
@JsonProperty("byte")
public void setByte(byte[] _byte) { public void setByte(byte[] _byte) {
this._byte = _byte; this._byte = _byte;
} }
@ -224,6 +232,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return binary; return binary;
} }
@JsonProperty("binary")
public void setBinary(File binary) { public void setBinary(File binary) {
this.binary = binary; this.binary = binary;
} }
@ -245,6 +254,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return date; return date;
} }
@JsonProperty("date")
public void setDate(LocalDate date) { public void setDate(LocalDate date) {
this.date = date; this.date = date;
} }
@ -265,6 +275,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return dateTime; return dateTime;
} }
@JsonProperty("dateTime")
public void setDateTime(Date dateTime) { public void setDateTime(Date dateTime) {
this.dateTime = dateTime; this.dateTime = dateTime;
} }
@ -285,6 +296,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return uuid; return uuid;
} }
@JsonProperty("uuid")
public void setUuid(UUID uuid) { public void setUuid(UUID uuid) {
this.uuid = uuid; this.uuid = uuid;
} }
@ -306,6 +318,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return password; return password;
} }
@JsonProperty("password")
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
@ -326,6 +339,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return bigDecimal; return bigDecimal;
} }
@JsonProperty("BigDecimal")
public void setBigDecimal(BigDecimal bigDecimal) { public void setBigDecimal(BigDecimal bigDecimal) {
this.bigDecimal = bigDecimal; this.bigDecimal = bigDecimal;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return bar; return bar;
} }
@JsonProperty("bar")
public void setBar(String bar) { public void setBar(String bar) {
this.bar = bar; this.bar = bar;
} }
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return foo; return foo;
} }
@JsonProperty("foo")
public void setFoo(String foo) { public void setFoo(String foo) {
this.foo = foo; this.foo = foo;
} }

View File

@ -73,6 +73,7 @@ public enum InnerEnum {
return mapMapOfString; return mapMapOfString;
} }
@JsonProperty("map_map_of_string")
public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) { public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
this.mapMapOfString = mapMapOfString; this.mapMapOfString = mapMapOfString;
} }
@ -93,6 +94,7 @@ public enum InnerEnum {
return mapOfEnumString; return mapOfEnumString;
} }
@JsonProperty("map_of_enum_string")
public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) { public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
this.mapOfEnumString = mapOfEnumString; this.mapOfEnumString = mapOfEnumString;
} }
@ -113,6 +115,7 @@ public enum InnerEnum {
return directMap; return directMap;
} }
@JsonProperty("direct_map")
public void setDirectMap(Map<String, Boolean> directMap) { public void setDirectMap(Map<String, Boolean> directMap) {
this.directMap = directMap; this.directMap = directMap;
} }
@ -133,6 +136,7 @@ public enum InnerEnum {
return indirectMap; return indirectMap;
} }
@JsonProperty("indirect_map")
public void setIndirectMap(Map<String, Boolean> indirectMap) { public void setIndirectMap(Map<String, Boolean> indirectMap) {
this.indirectMap = indirectMap; this.indirectMap = indirectMap;
} }

View File

@ -42,6 +42,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return uuid; return uuid;
} }
@JsonProperty("uuid")
public void setUuid(UUID uuid) { public void setUuid(UUID uuid) {
this.uuid = uuid; this.uuid = uuid;
} }
@ -62,6 +63,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return dateTime; return dateTime;
} }
@JsonProperty("dateTime")
public void setDateTime(Date dateTime) { public void setDateTime(Date dateTime) {
this.dateTime = dateTime; this.dateTime = dateTime;
} }
@ -82,6 +84,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return map; return map;
} }
@JsonProperty("map")
public void setMap(Map<String, Animal> map) { public void setMap(Map<String, Animal> map) {
this.map = map; this.map = map;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(Integer name) { public void setName(Integer name) {
this.name = name; this.name = name;
} }
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return propertyClass; return propertyClass;
} }
@JsonProperty("class")
public void setPropertyClass(String propertyClass) { public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return code; return code;
} }
@JsonProperty("code")
public void setCode(Integer code) { public void setCode(Integer code) {
this.code = code; this.code = code;
} }
@ -56,6 +57,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return type; return type;
} }
@JsonProperty("type")
public void setType(String type) { public void setType(String type) {
this.type = type; this.type = type;
} }
@ -76,6 +78,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return message; return message;
} }
@JsonProperty("message")
public void setMessage(String message) { public void setMessage(String message) {
this.message = message; this.message = message;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _return; return _return;
} }
@JsonProperty("return")
public void setReturn(Integer _return) { public void setReturn(Integer _return) {
this._return = _return; this._return = _return;
} }

View File

@ -40,6 +40,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(Integer name) { public void setName(Integer name) {
this.name = name; this.name = name;
} }
@ -60,6 +61,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return snakeCase; return snakeCase;
} }
@JsonProperty("snake_case")
public void setSnakeCase(Integer snakeCase) { public void setSnakeCase(Integer snakeCase) {
this.snakeCase = snakeCase; this.snakeCase = snakeCase;
} }
@ -80,6 +82,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return property; return property;
} }
@JsonProperty("property")
public void setProperty(String property) { public void setProperty(String property) {
this.property = property; this.property = property;
} }
@ -100,6 +103,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _123number; return _123number;
} }
@JsonProperty("123Number")
public void set123number(Integer _123number) { public void set123number(Integer _123number) {
this._123number = _123number; this._123number = _123number;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return justNumber; return justNumber;
} }
@JsonProperty("JustNumber")
public void setJustNumber(BigDecimal justNumber) { public void setJustNumber(BigDecimal justNumber) {
this.justNumber = justNumber; this.justNumber = justNumber;
} }

View File

@ -73,6 +73,7 @@ public enum StatusEnum {
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -93,6 +94,7 @@ public enum StatusEnum {
return petId; return petId;
} }
@JsonProperty("petId")
public void setPetId(Long petId) { public void setPetId(Long petId) {
this.petId = petId; this.petId = petId;
} }
@ -113,6 +115,7 @@ public enum StatusEnum {
return quantity; return quantity;
} }
@JsonProperty("quantity")
public void setQuantity(Integer quantity) { public void setQuantity(Integer quantity) {
this.quantity = quantity; this.quantity = quantity;
} }
@ -133,6 +136,7 @@ public enum StatusEnum {
return shipDate; return shipDate;
} }
@JsonProperty("shipDate")
public void setShipDate(Date shipDate) { public void setShipDate(Date shipDate) {
this.shipDate = shipDate; this.shipDate = shipDate;
} }
@ -154,6 +158,7 @@ public enum StatusEnum {
return status; return status;
} }
@JsonProperty("status")
public void setStatus(StatusEnum status) { public void setStatus(StatusEnum status) {
this.status = status; this.status = status;
} }
@ -174,6 +179,7 @@ public enum StatusEnum {
return complete; return complete;
} }
@JsonProperty("complete")
public void setComplete(Boolean complete) { public void setComplete(Boolean complete) {
this.complete = complete; this.complete = complete;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return myNumber; return myNumber;
} }
@JsonProperty("my_number")
public void setMyNumber(BigDecimal myNumber) { public void setMyNumber(BigDecimal myNumber) {
this.myNumber = myNumber; this.myNumber = myNumber;
} }
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return myString; return myString;
} }
@JsonProperty("my_string")
public void setMyString(String myString) { public void setMyString(String myString) {
this.myString = myString; this.myString = myString;
} }
@ -77,6 +79,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return myBoolean; return myBoolean;
} }
@JsonProperty("my_boolean")
public void setMyBoolean(Boolean myBoolean) { public void setMyBoolean(Boolean myBoolean) {
this.myBoolean = myBoolean; this.myBoolean = myBoolean;
} }

View File

@ -78,6 +78,7 @@ public enum StatusEnum {
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -98,6 +99,7 @@ public enum StatusEnum {
return category; return category;
} }
@JsonProperty("category")
public void setCategory(Category category) { public void setCategory(Category category) {
this.category = category; this.category = category;
} }
@ -119,6 +121,7 @@ public enum StatusEnum {
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }
@ -140,6 +143,7 @@ public enum StatusEnum {
return photoUrls; return photoUrls;
} }
@JsonProperty("photoUrls")
public void setPhotoUrls(Set<String> photoUrls) { public void setPhotoUrls(Set<String> photoUrls) {
this.photoUrls = photoUrls; this.photoUrls = photoUrls;
} }
@ -160,6 +164,7 @@ public enum StatusEnum {
return tags; return tags;
} }
@JsonProperty("tags")
public void setTags(List<Tag> tags) { public void setTags(List<Tag> tags) {
this.tags = tags; this.tags = tags;
} }
@ -181,6 +186,7 @@ public enum StatusEnum {
return status; return status;
} }
@JsonProperty("status")
public void setStatus(StatusEnum status) { public void setStatus(StatusEnum status) {
this.status = status; this.status = status;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return bar; return bar;
} }
@JsonProperty("bar")
public void setBar(String bar) { public void setBar(String bar) {
this.bar = bar; this.bar = bar;
} }
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return baz; return baz;
} }
@JsonProperty("baz")
public void setBaz(String baz) { public void setBaz(String baz) {
this.baz = baz; this.baz = baz;
} }

View File

@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return $specialPropertyName; return $specialPropertyName;
} }
@JsonProperty("$special[property.name]")
public void set$SpecialPropertyName(Long $specialPropertyName) { public void set$SpecialPropertyName(Long $specialPropertyName) {
this.$specialPropertyName = $specialPropertyName; this.$specialPropertyName = $specialPropertyName;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -42,6 +42,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return stringItem; return stringItem;
} }
@JsonProperty("string_item")
public void setStringItem(String stringItem) { public void setStringItem(String stringItem) {
this.stringItem = stringItem; this.stringItem = stringItem;
} }
@ -63,6 +64,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return numberItem; return numberItem;
} }
@JsonProperty("number_item")
public void setNumberItem(BigDecimal numberItem) { public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem; this.numberItem = numberItem;
} }
@ -84,6 +86,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return integerItem; return integerItem;
} }
@JsonProperty("integer_item")
public void setIntegerItem(Integer integerItem) { public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem; this.integerItem = integerItem;
} }
@ -105,6 +108,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return boolItem; return boolItem;
} }
@JsonProperty("bool_item")
public void setBoolItem(Boolean boolItem) { public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem; this.boolItem = boolItem;
} }
@ -126,6 +130,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayItem; return arrayItem;
} }
@JsonProperty("array_item")
public void setArrayItem(List<Integer> arrayItem) { public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem; this.arrayItem = arrayItem;
} }

View File

@ -43,6 +43,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return stringItem; return stringItem;
} }
@JsonProperty("string_item")
public void setStringItem(String stringItem) { public void setStringItem(String stringItem) {
this.stringItem = stringItem; this.stringItem = stringItem;
} }
@ -64,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return numberItem; return numberItem;
} }
@JsonProperty("number_item")
public void setNumberItem(BigDecimal numberItem) { public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem; this.numberItem = numberItem;
} }
@ -85,6 +87,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return floatItem; return floatItem;
} }
@JsonProperty("float_item")
public void setFloatItem(Float floatItem) { public void setFloatItem(Float floatItem) {
this.floatItem = floatItem; this.floatItem = floatItem;
} }
@ -106,6 +109,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return integerItem; return integerItem;
} }
@JsonProperty("integer_item")
public void setIntegerItem(Integer integerItem) { public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem; this.integerItem = integerItem;
} }
@ -127,6 +131,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return boolItem; return boolItem;
} }
@JsonProperty("bool_item")
public void setBoolItem(Boolean boolItem) { public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem; this.boolItem = boolItem;
} }
@ -148,6 +153,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayItem; return arrayItem;
} }
@JsonProperty("array_item")
public void setArrayItem(List<Integer> arrayItem) { public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem; this.arrayItem = arrayItem;
} }

View File

@ -41,6 +41,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -61,6 +62,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return username; return username;
} }
@JsonProperty("username")
public void setUsername(String username) { public void setUsername(String username) {
this.username = username; this.username = username;
} }
@ -81,6 +83,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return firstName; return firstName;
} }
@JsonProperty("firstName")
public void setFirstName(String firstName) { public void setFirstName(String firstName) {
this.firstName = firstName; this.firstName = firstName;
} }
@ -101,6 +104,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return lastName; return lastName;
} }
@JsonProperty("lastName")
public void setLastName(String lastName) { public void setLastName(String lastName) {
this.lastName = lastName; this.lastName = lastName;
} }
@ -121,6 +125,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return email; return email;
} }
@JsonProperty("email")
public void setEmail(String email) { public void setEmail(String email) {
this.email = email; this.email = email;
} }
@ -141,6 +146,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return password; return password;
} }
@JsonProperty("password")
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
@ -161,6 +167,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return phone; return phone;
} }
@JsonProperty("phone")
public void setPhone(String phone) { public void setPhone(String phone) {
this.phone = phone; this.phone = phone;
} }
@ -182,6 +189,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return userStatus; return userStatus;
} }
@JsonProperty("userStatus")
public void setUserStatus(Integer userStatus) { public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus; this.userStatus = userStatus;
} }

View File

@ -65,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return attributeString; return attributeString;
} }
@JsonProperty("attribute_string")
public void setAttributeString(String attributeString) { public void setAttributeString(String attributeString) {
this.attributeString = attributeString; this.attributeString = attributeString;
} }
@ -85,6 +86,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return attributeNumber; return attributeNumber;
} }
@JsonProperty("attribute_number")
public void setAttributeNumber(BigDecimal attributeNumber) { public void setAttributeNumber(BigDecimal attributeNumber) {
this.attributeNumber = attributeNumber; this.attributeNumber = attributeNumber;
} }
@ -105,6 +107,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return attributeInteger; return attributeInteger;
} }
@JsonProperty("attribute_integer")
public void setAttributeInteger(Integer attributeInteger) { public void setAttributeInteger(Integer attributeInteger) {
this.attributeInteger = attributeInteger; this.attributeInteger = attributeInteger;
} }
@ -125,6 +128,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return attributeBoolean; return attributeBoolean;
} }
@JsonProperty("attribute_boolean")
public void setAttributeBoolean(Boolean attributeBoolean) { public void setAttributeBoolean(Boolean attributeBoolean) {
this.attributeBoolean = attributeBoolean; this.attributeBoolean = attributeBoolean;
} }
@ -145,6 +149,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return wrappedArray; return wrappedArray;
} }
@JsonProperty("wrapped_array")
public void setWrappedArray(List<Integer> wrappedArray) { public void setWrappedArray(List<Integer> wrappedArray) {
this.wrappedArray = wrappedArray; this.wrappedArray = wrappedArray;
} }
@ -165,6 +170,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameString; return nameString;
} }
@JsonProperty("name_string")
public void setNameString(String nameString) { public void setNameString(String nameString) {
this.nameString = nameString; this.nameString = nameString;
} }
@ -185,6 +191,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameNumber; return nameNumber;
} }
@JsonProperty("name_number")
public void setNameNumber(BigDecimal nameNumber) { public void setNameNumber(BigDecimal nameNumber) {
this.nameNumber = nameNumber; this.nameNumber = nameNumber;
} }
@ -205,6 +212,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameInteger; return nameInteger;
} }
@JsonProperty("name_integer")
public void setNameInteger(Integer nameInteger) { public void setNameInteger(Integer nameInteger) {
this.nameInteger = nameInteger; this.nameInteger = nameInteger;
} }
@ -225,6 +233,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameBoolean; return nameBoolean;
} }
@JsonProperty("name_boolean")
public void setNameBoolean(Boolean nameBoolean) { public void setNameBoolean(Boolean nameBoolean) {
this.nameBoolean = nameBoolean; this.nameBoolean = nameBoolean;
} }
@ -245,6 +254,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameArray; return nameArray;
} }
@JsonProperty("name_array")
public void setNameArray(List<Integer> nameArray) { public void setNameArray(List<Integer> nameArray) {
this.nameArray = nameArray; this.nameArray = nameArray;
} }
@ -265,6 +275,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameWrappedArray; return nameWrappedArray;
} }
@JsonProperty("name_wrapped_array")
public void setNameWrappedArray(List<Integer> nameWrappedArray) { public void setNameWrappedArray(List<Integer> nameWrappedArray) {
this.nameWrappedArray = nameWrappedArray; this.nameWrappedArray = nameWrappedArray;
} }
@ -285,6 +296,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixString; return prefixString;
} }
@JsonProperty("prefix_string")
public void setPrefixString(String prefixString) { public void setPrefixString(String prefixString) {
this.prefixString = prefixString; this.prefixString = prefixString;
} }
@ -305,6 +317,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNumber; return prefixNumber;
} }
@JsonProperty("prefix_number")
public void setPrefixNumber(BigDecimal prefixNumber) { public void setPrefixNumber(BigDecimal prefixNumber) {
this.prefixNumber = prefixNumber; this.prefixNumber = prefixNumber;
} }
@ -325,6 +338,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixInteger; return prefixInteger;
} }
@JsonProperty("prefix_integer")
public void setPrefixInteger(Integer prefixInteger) { public void setPrefixInteger(Integer prefixInteger) {
this.prefixInteger = prefixInteger; this.prefixInteger = prefixInteger;
} }
@ -345,6 +359,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixBoolean; return prefixBoolean;
} }
@JsonProperty("prefix_boolean")
public void setPrefixBoolean(Boolean prefixBoolean) { public void setPrefixBoolean(Boolean prefixBoolean) {
this.prefixBoolean = prefixBoolean; this.prefixBoolean = prefixBoolean;
} }
@ -365,6 +380,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixArray; return prefixArray;
} }
@JsonProperty("prefix_array")
public void setPrefixArray(List<Integer> prefixArray) { public void setPrefixArray(List<Integer> prefixArray) {
this.prefixArray = prefixArray; this.prefixArray = prefixArray;
} }
@ -385,6 +401,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixWrappedArray; return prefixWrappedArray;
} }
@JsonProperty("prefix_wrapped_array")
public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) { public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) {
this.prefixWrappedArray = prefixWrappedArray; this.prefixWrappedArray = prefixWrappedArray;
} }
@ -405,6 +422,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceString; return namespaceString;
} }
@JsonProperty("namespace_string")
public void setNamespaceString(String namespaceString) { public void setNamespaceString(String namespaceString) {
this.namespaceString = namespaceString; this.namespaceString = namespaceString;
} }
@ -425,6 +443,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceNumber; return namespaceNumber;
} }
@JsonProperty("namespace_number")
public void setNamespaceNumber(BigDecimal namespaceNumber) { public void setNamespaceNumber(BigDecimal namespaceNumber) {
this.namespaceNumber = namespaceNumber; this.namespaceNumber = namespaceNumber;
} }
@ -445,6 +464,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceInteger; return namespaceInteger;
} }
@JsonProperty("namespace_integer")
public void setNamespaceInteger(Integer namespaceInteger) { public void setNamespaceInteger(Integer namespaceInteger) {
this.namespaceInteger = namespaceInteger; this.namespaceInteger = namespaceInteger;
} }
@ -465,6 +485,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceBoolean; return namespaceBoolean;
} }
@JsonProperty("namespace_boolean")
public void setNamespaceBoolean(Boolean namespaceBoolean) { public void setNamespaceBoolean(Boolean namespaceBoolean) {
this.namespaceBoolean = namespaceBoolean; this.namespaceBoolean = namespaceBoolean;
} }
@ -485,6 +506,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceArray; return namespaceArray;
} }
@JsonProperty("namespace_array")
public void setNamespaceArray(List<Integer> namespaceArray) { public void setNamespaceArray(List<Integer> namespaceArray) {
this.namespaceArray = namespaceArray; this.namespaceArray = namespaceArray;
} }
@ -505,6 +527,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceWrappedArray; return namespaceWrappedArray;
} }
@JsonProperty("namespace_wrapped_array")
public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) { public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) {
this.namespaceWrappedArray = namespaceWrappedArray; this.namespaceWrappedArray = namespaceWrappedArray;
} }
@ -525,6 +548,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsString; return prefixNsString;
} }
@JsonProperty("prefix_ns_string")
public void setPrefixNsString(String prefixNsString) { public void setPrefixNsString(String prefixNsString) {
this.prefixNsString = prefixNsString; this.prefixNsString = prefixNsString;
} }
@ -545,6 +569,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsNumber; return prefixNsNumber;
} }
@JsonProperty("prefix_ns_number")
public void setPrefixNsNumber(BigDecimal prefixNsNumber) { public void setPrefixNsNumber(BigDecimal prefixNsNumber) {
this.prefixNsNumber = prefixNsNumber; this.prefixNsNumber = prefixNsNumber;
} }
@ -565,6 +590,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsInteger; return prefixNsInteger;
} }
@JsonProperty("prefix_ns_integer")
public void setPrefixNsInteger(Integer prefixNsInteger) { public void setPrefixNsInteger(Integer prefixNsInteger) {
this.prefixNsInteger = prefixNsInteger; this.prefixNsInteger = prefixNsInteger;
} }
@ -585,6 +611,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsBoolean; return prefixNsBoolean;
} }
@JsonProperty("prefix_ns_boolean")
public void setPrefixNsBoolean(Boolean prefixNsBoolean) { public void setPrefixNsBoolean(Boolean prefixNsBoolean) {
this.prefixNsBoolean = prefixNsBoolean; this.prefixNsBoolean = prefixNsBoolean;
} }
@ -605,6 +632,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsArray; return prefixNsArray;
} }
@JsonProperty("prefix_ns_array")
public void setPrefixNsArray(List<Integer> prefixNsArray) { public void setPrefixNsArray(List<Integer> prefixNsArray) {
this.prefixNsArray = prefixNsArray; this.prefixNsArray = prefixNsArray;
} }
@ -625,6 +653,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsWrappedArray; return prefixNsWrappedArray;
} }
@JsonProperty("prefix_ns_wrapped_array")
public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) { public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) {
this.prefixNsWrappedArray = prefixNsWrappedArray; this.prefixNsWrappedArray = prefixNsWrappedArray;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -48,6 +48,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapString; return mapString;
} }
@JsonProperty("map_string")
public void setMapString(Map<String, String> mapString) { public void setMapString(Map<String, String> mapString) {
this.mapString = mapString; this.mapString = mapString;
} }
@ -68,6 +69,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapNumber; return mapNumber;
} }
@JsonProperty("map_number")
public void setMapNumber(Map<String, BigDecimal> mapNumber) { public void setMapNumber(Map<String, BigDecimal> mapNumber) {
this.mapNumber = mapNumber; this.mapNumber = mapNumber;
} }
@ -88,6 +90,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapInteger; return mapInteger;
} }
@JsonProperty("map_integer")
public void setMapInteger(Map<String, Integer> mapInteger) { public void setMapInteger(Map<String, Integer> mapInteger) {
this.mapInteger = mapInteger; this.mapInteger = mapInteger;
} }
@ -108,6 +111,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapBoolean; return mapBoolean;
} }
@JsonProperty("map_boolean")
public void setMapBoolean(Map<String, Boolean> mapBoolean) { public void setMapBoolean(Map<String, Boolean> mapBoolean) {
this.mapBoolean = mapBoolean; this.mapBoolean = mapBoolean;
} }
@ -128,6 +132,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapArrayInteger; return mapArrayInteger;
} }
@JsonProperty("map_array_integer")
public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) { public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
this.mapArrayInteger = mapArrayInteger; this.mapArrayInteger = mapArrayInteger;
} }
@ -148,6 +153,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapArrayAnytype; return mapArrayAnytype;
} }
@JsonProperty("map_array_anytype")
public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) { public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
this.mapArrayAnytype = mapArrayAnytype; this.mapArrayAnytype = mapArrayAnytype;
} }
@ -168,6 +174,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapMapString; return mapMapString;
} }
@JsonProperty("map_map_string")
public void setMapMapString(Map<String, Map<String, String>> mapMapString) { public void setMapMapString(Map<String, Map<String, String>> mapMapString) {
this.mapMapString = mapMapString; this.mapMapString = mapMapString;
} }
@ -188,6 +195,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return mapMapAnytype; return mapMapAnytype;
} }
@JsonProperty("map_map_anytype")
public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) { public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
this.mapMapAnytype = mapMapAnytype; this.mapMapAnytype = mapMapAnytype;
} }
@ -208,6 +216,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return anytype1; return anytype1;
} }
@JsonProperty("anytype_1")
public void setAnytype1(Object anytype1) { public void setAnytype1(Object anytype1) {
this.anytype1 = anytype1; this.anytype1 = anytype1;
} }
@ -228,6 +237,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return anytype2; return anytype2;
} }
@JsonProperty("anytype_2")
public void setAnytype2(Object anytype2) { public void setAnytype2(Object anytype2) {
this.anytype2 = anytype2; this.anytype2 = anytype2;
} }
@ -248,6 +258,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return anytype3; return anytype3;
} }
@JsonProperty("anytype_3")
public void setAnytype3(Object anytype3) { public void setAnytype3(Object anytype3) {
this.anytype3 = anytype3; this.anytype3 = anytype3;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -44,6 +44,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return className; return className;
} }
@JsonProperty("className")
public void setClassName(String className) { public void setClassName(String className) {
this.className = className; this.className = className;
} }
@ -64,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return color; return color;
} }
@JsonProperty("color")
public void setColor(String color) { public void setColor(String color) {
this.color = color; this.color = color;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayArrayNumber; return arrayArrayNumber;
} }
@JsonProperty("ArrayArrayNumber")
public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) { public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) {
this.arrayArrayNumber = arrayArrayNumber; this.arrayArrayNumber = arrayArrayNumber;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayNumber; return arrayNumber;
} }
@JsonProperty("ArrayNumber")
public void setArrayNumber(List<BigDecimal> arrayNumber) { public void setArrayNumber(List<BigDecimal> arrayNumber) {
this.arrayNumber = arrayNumber; this.arrayNumber = arrayNumber;
} }

View File

@ -39,6 +39,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayOfString; return arrayOfString;
} }
@JsonProperty("array_of_string")
public void setArrayOfString(List<String> arrayOfString) { public void setArrayOfString(List<String> arrayOfString) {
this.arrayOfString = arrayOfString; this.arrayOfString = arrayOfString;
} }
@ -59,6 +60,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayArrayOfInteger; return arrayArrayOfInteger;
} }
@JsonProperty("array_array_of_integer")
public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) { public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
this.arrayArrayOfInteger = arrayArrayOfInteger; this.arrayArrayOfInteger = arrayArrayOfInteger;
} }
@ -79,6 +81,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayArrayOfModel; return arrayArrayOfModel;
} }
@JsonProperty("array_array_of_model")
public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) { public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
this.arrayArrayOfModel = arrayArrayOfModel; this.arrayArrayOfModel = arrayArrayOfModel;
} }

View File

@ -69,6 +69,7 @@ public enum KindEnum {
return kind; return kind;
} }
@JsonProperty("kind")
public void setKind(KindEnum kind) { public void setKind(KindEnum kind) {
this.kind = kind; this.kind = kind;
} }

View File

@ -67,6 +67,7 @@ public enum KindEnum {
return kind; return kind;
} }
@JsonProperty("kind")
public void setKind(KindEnum kind) { public void setKind(KindEnum kind) {
this.kind = kind; this.kind = kind;
} }

View File

@ -39,6 +39,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return smallCamel; return smallCamel;
} }
@JsonProperty("smallCamel")
public void setSmallCamel(String smallCamel) { public void setSmallCamel(String smallCamel) {
this.smallCamel = smallCamel; this.smallCamel = smallCamel;
} }
@ -59,6 +60,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return capitalCamel; return capitalCamel;
} }
@JsonProperty("CapitalCamel")
public void setCapitalCamel(String capitalCamel) { public void setCapitalCamel(String capitalCamel) {
this.capitalCamel = capitalCamel; this.capitalCamel = capitalCamel;
} }
@ -79,6 +81,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return smallSnake; return smallSnake;
} }
@JsonProperty("small_Snake")
public void setSmallSnake(String smallSnake) { public void setSmallSnake(String smallSnake) {
this.smallSnake = smallSnake; this.smallSnake = smallSnake;
} }
@ -99,6 +102,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return capitalSnake; return capitalSnake;
} }
@JsonProperty("Capital_Snake")
public void setCapitalSnake(String capitalSnake) { public void setCapitalSnake(String capitalSnake) {
this.capitalSnake = capitalSnake; this.capitalSnake = capitalSnake;
} }
@ -119,6 +123,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return scAETHFlowPoints; return scAETHFlowPoints;
} }
@JsonProperty("SCA_ETH_Flow_Points")
public void setScAETHFlowPoints(String scAETHFlowPoints) { public void setScAETHFlowPoints(String scAETHFlowPoints) {
this.scAETHFlowPoints = scAETHFlowPoints; this.scAETHFlowPoints = scAETHFlowPoints;
} }
@ -140,6 +145,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return ATT_NAME; return ATT_NAME;
} }
@JsonProperty("ATT_NAME")
public void setATTNAME(String ATT_NAME) { public void setATTNAME(String ATT_NAME) {
this.ATT_NAME = ATT_NAME; this.ATT_NAME = ATT_NAME;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return declawed; return declawed;
} }
@JsonProperty("declawed")
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return declawed; return declawed;
} }
@JsonProperty("declawed")
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -56,6 +57,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return propertyClass; return propertyClass;
} }
@JsonProperty("_class")
public void setPropertyClass(String propertyClass) { public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;
} }

View File

@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return client; return client;
} }
@JsonProperty("client")
public void setClient(String client) { public void setClient(String client) {
this.client = client; this.client = client;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return breed; return breed;
} }
@JsonProperty("breed")
public void setBreed(String breed) { public void setBreed(String breed) {
this.breed = breed; this.breed = breed;
} }

View File

@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return breed; return breed;
} }
@JsonProperty("breed")
public void setBreed(String breed) { public void setBreed(String breed) {
this.breed = breed; this.breed = breed;
} }

View File

@ -103,6 +103,7 @@ public enum ArrayEnumEnum {
return justSymbol; return justSymbol;
} }
@JsonProperty("just_symbol")
public void setJustSymbol(JustSymbolEnum justSymbol) { public void setJustSymbol(JustSymbolEnum justSymbol) {
this.justSymbol = justSymbol; this.justSymbol = justSymbol;
} }
@ -123,6 +124,7 @@ public enum ArrayEnumEnum {
return arrayEnum; return arrayEnum;
} }
@JsonProperty("array_enum")
public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) { public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) {
this.arrayEnum = arrayEnum; this.arrayEnum = arrayEnum;
} }

View File

@ -171,6 +171,7 @@ public enum EnumNumberEnum {
return enumString; return enumString;
} }
@JsonProperty("enum_string")
public void setEnumString(EnumStringEnum enumString) { public void setEnumString(EnumStringEnum enumString) {
this.enumString = enumString; this.enumString = enumString;
} }
@ -192,6 +193,7 @@ public enum EnumNumberEnum {
return enumStringRequired; return enumStringRequired;
} }
@JsonProperty("enum_string_required")
public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) { public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) {
this.enumStringRequired = enumStringRequired; this.enumStringRequired = enumStringRequired;
} }
@ -212,6 +214,7 @@ public enum EnumNumberEnum {
return enumInteger; return enumInteger;
} }
@JsonProperty("enum_integer")
public void setEnumInteger(EnumIntegerEnum enumInteger) { public void setEnumInteger(EnumIntegerEnum enumInteger) {
this.enumInteger = enumInteger; this.enumInteger = enumInteger;
} }
@ -232,6 +235,7 @@ public enum EnumNumberEnum {
return enumNumber; return enumNumber;
} }
@JsonProperty("enum_number")
public void setEnumNumber(EnumNumberEnum enumNumber) { public void setEnumNumber(EnumNumberEnum enumNumber) {
this.enumNumber = enumNumber; this.enumNumber = enumNumber;
} }
@ -252,6 +256,7 @@ public enum EnumNumberEnum {
return outerEnum; return outerEnum;
} }
@JsonProperty("outerEnum")
public void setOuterEnum(OuterEnum outerEnum) { public void setOuterEnum(OuterEnum outerEnum) {
this.outerEnum = outerEnum; this.outerEnum = outerEnum;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return file; return file;
} }
@JsonProperty("file")
public void setFile(java.io.File file) { public void setFile(java.io.File file) {
this.file = file; this.file = file;
} }
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return files; return files;
} }
@JsonProperty("files")
public void setFiles(List<java.io.File> files) { public void setFiles(List<java.io.File> files) {
this.files = files; this.files = files;
} }

View File

@ -54,6 +54,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return integer; return integer;
} }
@JsonProperty("integer")
public void setInteger(Integer integer) { public void setInteger(Integer integer) {
this.integer = integer; this.integer = integer;
} }
@ -76,6 +77,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return int32; return int32;
} }
@JsonProperty("int32")
public void setInt32(Integer int32) { public void setInt32(Integer int32) {
this.int32 = int32; this.int32 = int32;
} }
@ -96,6 +98,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return int64; return int64;
} }
@JsonProperty("int64")
public void setInt64(Long int64) { public void setInt64(Long int64) {
this.int64 = int64; this.int64 = int64;
} }
@ -119,6 +122,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return number; return number;
} }
@JsonProperty("number")
public void setNumber(BigDecimal number) { public void setNumber(BigDecimal number) {
this.number = number; this.number = number;
} }
@ -141,6 +145,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _float; return _float;
} }
@JsonProperty("float")
public void setFloat(Float _float) { public void setFloat(Float _float) {
this._float = _float; this._float = _float;
} }
@ -163,6 +168,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _double; return _double;
} }
@JsonProperty("double")
public void setDouble(Double _double) { public void setDouble(Double _double) {
this._double = _double; this._double = _double;
} }
@ -183,6 +189,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return string; return string;
} }
@JsonProperty("string")
public void setString(String string) { public void setString(String string) {
this.string = string; this.string = string;
} }
@ -204,6 +211,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _byte; return _byte;
} }
@JsonProperty("byte")
public void setByte(byte[] _byte) { public void setByte(byte[] _byte) {
this._byte = _byte; this._byte = _byte;
} }
@ -224,6 +232,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return binary; return binary;
} }
@JsonProperty("binary")
public void setBinary(File binary) { public void setBinary(File binary) {
this.binary = binary; this.binary = binary;
} }
@ -245,6 +254,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return date; return date;
} }
@JsonProperty("date")
public void setDate(LocalDate date) { public void setDate(LocalDate date) {
this.date = date; this.date = date;
} }
@ -265,6 +275,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return dateTime; return dateTime;
} }
@JsonProperty("dateTime")
public void setDateTime(Date dateTime) { public void setDateTime(Date dateTime) {
this.dateTime = dateTime; this.dateTime = dateTime;
} }
@ -285,6 +296,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return uuid; return uuid;
} }
@JsonProperty("uuid")
public void setUuid(UUID uuid) { public void setUuid(UUID uuid) {
this.uuid = uuid; this.uuid = uuid;
} }
@ -306,6 +318,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return password; return password;
} }
@JsonProperty("password")
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
@ -326,6 +339,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return bigDecimal; return bigDecimal;
} }
@JsonProperty("BigDecimal")
public void setBigDecimal(BigDecimal bigDecimal) { public void setBigDecimal(BigDecimal bigDecimal) {
this.bigDecimal = bigDecimal; this.bigDecimal = bigDecimal;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return bar; return bar;
} }
@JsonProperty("bar")
public void setBar(String bar) { public void setBar(String bar) {
this.bar = bar; this.bar = bar;
} }
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return foo; return foo;
} }
@JsonProperty("foo")
public void setFoo(String foo) { public void setFoo(String foo) {
this.foo = foo; this.foo = foo;
} }

View File

@ -73,6 +73,7 @@ public enum InnerEnum {
return mapMapOfString; return mapMapOfString;
} }
@JsonProperty("map_map_of_string")
public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) { public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
this.mapMapOfString = mapMapOfString; this.mapMapOfString = mapMapOfString;
} }
@ -93,6 +94,7 @@ public enum InnerEnum {
return mapOfEnumString; return mapOfEnumString;
} }
@JsonProperty("map_of_enum_string")
public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) { public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
this.mapOfEnumString = mapOfEnumString; this.mapOfEnumString = mapOfEnumString;
} }
@ -113,6 +115,7 @@ public enum InnerEnum {
return directMap; return directMap;
} }
@JsonProperty("direct_map")
public void setDirectMap(Map<String, Boolean> directMap) { public void setDirectMap(Map<String, Boolean> directMap) {
this.directMap = directMap; this.directMap = directMap;
} }
@ -133,6 +136,7 @@ public enum InnerEnum {
return indirectMap; return indirectMap;
} }
@JsonProperty("indirect_map")
public void setIndirectMap(Map<String, Boolean> indirectMap) { public void setIndirectMap(Map<String, Boolean> indirectMap) {
this.indirectMap = indirectMap; this.indirectMap = indirectMap;
} }

View File

@ -42,6 +42,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return uuid; return uuid;
} }
@JsonProperty("uuid")
public void setUuid(UUID uuid) { public void setUuid(UUID uuid) {
this.uuid = uuid; this.uuid = uuid;
} }
@ -62,6 +63,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return dateTime; return dateTime;
} }
@JsonProperty("dateTime")
public void setDateTime(Date dateTime) { public void setDateTime(Date dateTime) {
this.dateTime = dateTime; this.dateTime = dateTime;
} }
@ -82,6 +84,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return map; return map;
} }
@JsonProperty("map")
public void setMap(Map<String, Animal> map) { public void setMap(Map<String, Animal> map) {
this.map = map; this.map = map;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(Integer name) { public void setName(Integer name) {
this.name = name; this.name = name;
} }
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return propertyClass; return propertyClass;
} }
@JsonProperty("class")
public void setPropertyClass(String propertyClass) { public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return code; return code;
} }
@JsonProperty("code")
public void setCode(Integer code) { public void setCode(Integer code) {
this.code = code; this.code = code;
} }
@ -56,6 +57,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return type; return type;
} }
@JsonProperty("type")
public void setType(String type) { public void setType(String type) {
this.type = type; this.type = type;
} }
@ -76,6 +78,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return message; return message;
} }
@JsonProperty("message")
public void setMessage(String message) { public void setMessage(String message) {
this.message = message; this.message = message;
} }

View File

@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _return; return _return;
} }
@JsonProperty("return")
public void setReturn(Integer _return) { public void setReturn(Integer _return) {
this._return = _return; this._return = _return;
} }

View File

@ -40,6 +40,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(Integer name) { public void setName(Integer name) {
this.name = name; this.name = name;
} }
@ -60,6 +61,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return snakeCase; return snakeCase;
} }
@JsonProperty("snake_case")
public void setSnakeCase(Integer snakeCase) { public void setSnakeCase(Integer snakeCase) {
this.snakeCase = snakeCase; this.snakeCase = snakeCase;
} }
@ -80,6 +82,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return property; return property;
} }
@JsonProperty("property")
public void setProperty(String property) { public void setProperty(String property) {
this.property = property; this.property = property;
} }
@ -100,6 +103,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return _123number; return _123number;
} }
@JsonProperty("123Number")
public void set123number(Integer _123number) { public void set123number(Integer _123number) {
this._123number = _123number; this._123number = _123number;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return justNumber; return justNumber;
} }
@JsonProperty("JustNumber")
public void setJustNumber(BigDecimal justNumber) { public void setJustNumber(BigDecimal justNumber) {
this.justNumber = justNumber; this.justNumber = justNumber;
} }

View File

@ -73,6 +73,7 @@ public enum StatusEnum {
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -93,6 +94,7 @@ public enum StatusEnum {
return petId; return petId;
} }
@JsonProperty("petId")
public void setPetId(Long petId) { public void setPetId(Long petId) {
this.petId = petId; this.petId = petId;
} }
@ -113,6 +115,7 @@ public enum StatusEnum {
return quantity; return quantity;
} }
@JsonProperty("quantity")
public void setQuantity(Integer quantity) { public void setQuantity(Integer quantity) {
this.quantity = quantity; this.quantity = quantity;
} }
@ -133,6 +136,7 @@ public enum StatusEnum {
return shipDate; return shipDate;
} }
@JsonProperty("shipDate")
public void setShipDate(Date shipDate) { public void setShipDate(Date shipDate) {
this.shipDate = shipDate; this.shipDate = shipDate;
} }
@ -154,6 +158,7 @@ public enum StatusEnum {
return status; return status;
} }
@JsonProperty("status")
public void setStatus(StatusEnum status) { public void setStatus(StatusEnum status) {
this.status = status; this.status = status;
} }
@ -174,6 +179,7 @@ public enum StatusEnum {
return complete; return complete;
} }
@JsonProperty("complete")
public void setComplete(Boolean complete) { public void setComplete(Boolean complete) {
this.complete = complete; this.complete = complete;
} }

View File

@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return myNumber; return myNumber;
} }
@JsonProperty("my_number")
public void setMyNumber(BigDecimal myNumber) { public void setMyNumber(BigDecimal myNumber) {
this.myNumber = myNumber; this.myNumber = myNumber;
} }
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return myString; return myString;
} }
@JsonProperty("my_string")
public void setMyString(String myString) { public void setMyString(String myString) {
this.myString = myString; this.myString = myString;
} }
@ -77,6 +79,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return myBoolean; return myBoolean;
} }
@JsonProperty("my_boolean")
public void setMyBoolean(Boolean myBoolean) { public void setMyBoolean(Boolean myBoolean) {
this.myBoolean = myBoolean; this.myBoolean = myBoolean;
} }

View File

@ -78,6 +78,7 @@ public enum StatusEnum {
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -98,6 +99,7 @@ public enum StatusEnum {
return category; return category;
} }
@JsonProperty("category")
public void setCategory(Category category) { public void setCategory(Category category) {
this.category = category; this.category = category;
} }
@ -119,6 +121,7 @@ public enum StatusEnum {
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }
@ -140,6 +143,7 @@ public enum StatusEnum {
return photoUrls; return photoUrls;
} }
@JsonProperty("photoUrls")
public void setPhotoUrls(Set<String> photoUrls) { public void setPhotoUrls(Set<String> photoUrls) {
this.photoUrls = photoUrls; this.photoUrls = photoUrls;
} }
@ -160,6 +164,7 @@ public enum StatusEnum {
return tags; return tags;
} }
@JsonProperty("tags")
public void setTags(List<Tag> tags) { public void setTags(List<Tag> tags) {
this.tags = tags; this.tags = tags;
} }
@ -181,6 +186,7 @@ public enum StatusEnum {
return status; return status;
} }
@JsonProperty("status")
public void setStatus(StatusEnum status) { public void setStatus(StatusEnum status) {
this.status = status; this.status = status;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return bar; return bar;
} }
@JsonProperty("bar")
public void setBar(String bar) { public void setBar(String bar) {
this.bar = bar; this.bar = bar;
} }
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return baz; return baz;
} }
@JsonProperty("baz")
public void setBaz(String baz) { public void setBaz(String baz) {
this.baz = baz; this.baz = baz;
} }

View File

@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return $specialPropertyName; return $specialPropertyName;
} }
@JsonProperty("$special[property.name]")
public void set$SpecialPropertyName(Long $specialPropertyName) { public void set$SpecialPropertyName(Long $specialPropertyName) {
this.$specialPropertyName = $specialPropertyName; this.$specialPropertyName = $specialPropertyName;
} }

View File

@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return name; return name;
} }
@JsonProperty("name")
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -42,6 +42,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return stringItem; return stringItem;
} }
@JsonProperty("string_item")
public void setStringItem(String stringItem) { public void setStringItem(String stringItem) {
this.stringItem = stringItem; this.stringItem = stringItem;
} }
@ -63,6 +64,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return numberItem; return numberItem;
} }
@JsonProperty("number_item")
public void setNumberItem(BigDecimal numberItem) { public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem; this.numberItem = numberItem;
} }
@ -84,6 +86,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return integerItem; return integerItem;
} }
@JsonProperty("integer_item")
public void setIntegerItem(Integer integerItem) { public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem; this.integerItem = integerItem;
} }
@ -105,6 +108,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return boolItem; return boolItem;
} }
@JsonProperty("bool_item")
public void setBoolItem(Boolean boolItem) { public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem; this.boolItem = boolItem;
} }
@ -126,6 +130,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayItem; return arrayItem;
} }
@JsonProperty("array_item")
public void setArrayItem(List<Integer> arrayItem) { public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem; this.arrayItem = arrayItem;
} }

View File

@ -43,6 +43,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return stringItem; return stringItem;
} }
@JsonProperty("string_item")
public void setStringItem(String stringItem) { public void setStringItem(String stringItem) {
this.stringItem = stringItem; this.stringItem = stringItem;
} }
@ -64,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return numberItem; return numberItem;
} }
@JsonProperty("number_item")
public void setNumberItem(BigDecimal numberItem) { public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem; this.numberItem = numberItem;
} }
@ -85,6 +87,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return floatItem; return floatItem;
} }
@JsonProperty("float_item")
public void setFloatItem(Float floatItem) { public void setFloatItem(Float floatItem) {
this.floatItem = floatItem; this.floatItem = floatItem;
} }
@ -106,6 +109,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return integerItem; return integerItem;
} }
@JsonProperty("integer_item")
public void setIntegerItem(Integer integerItem) { public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem; this.integerItem = integerItem;
} }
@ -127,6 +131,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return boolItem; return boolItem;
} }
@JsonProperty("bool_item")
public void setBoolItem(Boolean boolItem) { public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem; this.boolItem = boolItem;
} }
@ -148,6 +153,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return arrayItem; return arrayItem;
} }
@JsonProperty("array_item")
public void setArrayItem(List<Integer> arrayItem) { public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem; this.arrayItem = arrayItem;
} }

View File

@ -41,6 +41,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return id; return id;
} }
@JsonProperty("id")
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -61,6 +62,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return username; return username;
} }
@JsonProperty("username")
public void setUsername(String username) { public void setUsername(String username) {
this.username = username; this.username = username;
} }
@ -81,6 +83,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return firstName; return firstName;
} }
@JsonProperty("firstName")
public void setFirstName(String firstName) { public void setFirstName(String firstName) {
this.firstName = firstName; this.firstName = firstName;
} }
@ -101,6 +104,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return lastName; return lastName;
} }
@JsonProperty("lastName")
public void setLastName(String lastName) { public void setLastName(String lastName) {
this.lastName = lastName; this.lastName = lastName;
} }
@ -121,6 +125,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return email; return email;
} }
@JsonProperty("email")
public void setEmail(String email) { public void setEmail(String email) {
this.email = email; this.email = email;
} }
@ -141,6 +146,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return password; return password;
} }
@JsonProperty("password")
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
@ -161,6 +167,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return phone; return phone;
} }
@JsonProperty("phone")
public void setPhone(String phone) { public void setPhone(String phone) {
this.phone = phone; this.phone = phone;
} }
@ -182,6 +189,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return userStatus; return userStatus;
} }
@JsonProperty("userStatus")
public void setUserStatus(Integer userStatus) { public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus; this.userStatus = userStatus;
} }

View File

@ -65,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return attributeString; return attributeString;
} }
@JsonProperty("attribute_string")
public void setAttributeString(String attributeString) { public void setAttributeString(String attributeString) {
this.attributeString = attributeString; this.attributeString = attributeString;
} }
@ -85,6 +86,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return attributeNumber; return attributeNumber;
} }
@JsonProperty("attribute_number")
public void setAttributeNumber(BigDecimal attributeNumber) { public void setAttributeNumber(BigDecimal attributeNumber) {
this.attributeNumber = attributeNumber; this.attributeNumber = attributeNumber;
} }
@ -105,6 +107,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return attributeInteger; return attributeInteger;
} }
@JsonProperty("attribute_integer")
public void setAttributeInteger(Integer attributeInteger) { public void setAttributeInteger(Integer attributeInteger) {
this.attributeInteger = attributeInteger; this.attributeInteger = attributeInteger;
} }
@ -125,6 +128,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return attributeBoolean; return attributeBoolean;
} }
@JsonProperty("attribute_boolean")
public void setAttributeBoolean(Boolean attributeBoolean) { public void setAttributeBoolean(Boolean attributeBoolean) {
this.attributeBoolean = attributeBoolean; this.attributeBoolean = attributeBoolean;
} }
@ -145,6 +149,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return wrappedArray; return wrappedArray;
} }
@JsonProperty("wrapped_array")
public void setWrappedArray(List<Integer> wrappedArray) { public void setWrappedArray(List<Integer> wrappedArray) {
this.wrappedArray = wrappedArray; this.wrappedArray = wrappedArray;
} }
@ -165,6 +170,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameString; return nameString;
} }
@JsonProperty("name_string")
public void setNameString(String nameString) { public void setNameString(String nameString) {
this.nameString = nameString; this.nameString = nameString;
} }
@ -185,6 +191,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameNumber; return nameNumber;
} }
@JsonProperty("name_number")
public void setNameNumber(BigDecimal nameNumber) { public void setNameNumber(BigDecimal nameNumber) {
this.nameNumber = nameNumber; this.nameNumber = nameNumber;
} }
@ -205,6 +212,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameInteger; return nameInteger;
} }
@JsonProperty("name_integer")
public void setNameInteger(Integer nameInteger) { public void setNameInteger(Integer nameInteger) {
this.nameInteger = nameInteger; this.nameInteger = nameInteger;
} }
@ -225,6 +233,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameBoolean; return nameBoolean;
} }
@JsonProperty("name_boolean")
public void setNameBoolean(Boolean nameBoolean) { public void setNameBoolean(Boolean nameBoolean) {
this.nameBoolean = nameBoolean; this.nameBoolean = nameBoolean;
} }
@ -245,6 +254,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameArray; return nameArray;
} }
@JsonProperty("name_array")
public void setNameArray(List<Integer> nameArray) { public void setNameArray(List<Integer> nameArray) {
this.nameArray = nameArray; this.nameArray = nameArray;
} }
@ -265,6 +275,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return nameWrappedArray; return nameWrappedArray;
} }
@JsonProperty("name_wrapped_array")
public void setNameWrappedArray(List<Integer> nameWrappedArray) { public void setNameWrappedArray(List<Integer> nameWrappedArray) {
this.nameWrappedArray = nameWrappedArray; this.nameWrappedArray = nameWrappedArray;
} }
@ -285,6 +296,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixString; return prefixString;
} }
@JsonProperty("prefix_string")
public void setPrefixString(String prefixString) { public void setPrefixString(String prefixString) {
this.prefixString = prefixString; this.prefixString = prefixString;
} }
@ -305,6 +317,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNumber; return prefixNumber;
} }
@JsonProperty("prefix_number")
public void setPrefixNumber(BigDecimal prefixNumber) { public void setPrefixNumber(BigDecimal prefixNumber) {
this.prefixNumber = prefixNumber; this.prefixNumber = prefixNumber;
} }
@ -325,6 +338,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixInteger; return prefixInteger;
} }
@JsonProperty("prefix_integer")
public void setPrefixInteger(Integer prefixInteger) { public void setPrefixInteger(Integer prefixInteger) {
this.prefixInteger = prefixInteger; this.prefixInteger = prefixInteger;
} }
@ -345,6 +359,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixBoolean; return prefixBoolean;
} }
@JsonProperty("prefix_boolean")
public void setPrefixBoolean(Boolean prefixBoolean) { public void setPrefixBoolean(Boolean prefixBoolean) {
this.prefixBoolean = prefixBoolean; this.prefixBoolean = prefixBoolean;
} }
@ -365,6 +380,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixArray; return prefixArray;
} }
@JsonProperty("prefix_array")
public void setPrefixArray(List<Integer> prefixArray) { public void setPrefixArray(List<Integer> prefixArray) {
this.prefixArray = prefixArray; this.prefixArray = prefixArray;
} }
@ -385,6 +401,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixWrappedArray; return prefixWrappedArray;
} }
@JsonProperty("prefix_wrapped_array")
public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) { public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) {
this.prefixWrappedArray = prefixWrappedArray; this.prefixWrappedArray = prefixWrappedArray;
} }
@ -405,6 +422,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceString; return namespaceString;
} }
@JsonProperty("namespace_string")
public void setNamespaceString(String namespaceString) { public void setNamespaceString(String namespaceString) {
this.namespaceString = namespaceString; this.namespaceString = namespaceString;
} }
@ -425,6 +443,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceNumber; return namespaceNumber;
} }
@JsonProperty("namespace_number")
public void setNamespaceNumber(BigDecimal namespaceNumber) { public void setNamespaceNumber(BigDecimal namespaceNumber) {
this.namespaceNumber = namespaceNumber; this.namespaceNumber = namespaceNumber;
} }
@ -445,6 +464,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceInteger; return namespaceInteger;
} }
@JsonProperty("namespace_integer")
public void setNamespaceInteger(Integer namespaceInteger) { public void setNamespaceInteger(Integer namespaceInteger) {
this.namespaceInteger = namespaceInteger; this.namespaceInteger = namespaceInteger;
} }
@ -465,6 +485,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceBoolean; return namespaceBoolean;
} }
@JsonProperty("namespace_boolean")
public void setNamespaceBoolean(Boolean namespaceBoolean) { public void setNamespaceBoolean(Boolean namespaceBoolean) {
this.namespaceBoolean = namespaceBoolean; this.namespaceBoolean = namespaceBoolean;
} }
@ -485,6 +506,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceArray; return namespaceArray;
} }
@JsonProperty("namespace_array")
public void setNamespaceArray(List<Integer> namespaceArray) { public void setNamespaceArray(List<Integer> namespaceArray) {
this.namespaceArray = namespaceArray; this.namespaceArray = namespaceArray;
} }
@ -505,6 +527,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return namespaceWrappedArray; return namespaceWrappedArray;
} }
@JsonProperty("namespace_wrapped_array")
public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) { public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) {
this.namespaceWrappedArray = namespaceWrappedArray; this.namespaceWrappedArray = namespaceWrappedArray;
} }
@ -525,6 +548,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsString; return prefixNsString;
} }
@JsonProperty("prefix_ns_string")
public void setPrefixNsString(String prefixNsString) { public void setPrefixNsString(String prefixNsString) {
this.prefixNsString = prefixNsString; this.prefixNsString = prefixNsString;
} }
@ -545,6 +569,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsNumber; return prefixNsNumber;
} }
@JsonProperty("prefix_ns_number")
public void setPrefixNsNumber(BigDecimal prefixNsNumber) { public void setPrefixNsNumber(BigDecimal prefixNsNumber) {
this.prefixNsNumber = prefixNsNumber; this.prefixNsNumber = prefixNsNumber;
} }
@ -565,6 +590,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsInteger; return prefixNsInteger;
} }
@JsonProperty("prefix_ns_integer")
public void setPrefixNsInteger(Integer prefixNsInteger) { public void setPrefixNsInteger(Integer prefixNsInteger) {
this.prefixNsInteger = prefixNsInteger; this.prefixNsInteger = prefixNsInteger;
} }
@ -585,6 +611,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsBoolean; return prefixNsBoolean;
} }
@JsonProperty("prefix_ns_boolean")
public void setPrefixNsBoolean(Boolean prefixNsBoolean) { public void setPrefixNsBoolean(Boolean prefixNsBoolean) {
this.prefixNsBoolean = prefixNsBoolean; this.prefixNsBoolean = prefixNsBoolean;
} }
@ -605,6 +632,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsArray; return prefixNsArray;
} }
@JsonProperty("prefix_ns_array")
public void setPrefixNsArray(List<Integer> prefixNsArray) { public void setPrefixNsArray(List<Integer> prefixNsArray) {
this.prefixNsArray = prefixNsArray; this.prefixNsArray = prefixNsArray;
} }
@ -625,6 +653,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
return prefixNsWrappedArray; return prefixNsWrappedArray;
} }
@JsonProperty("prefix_ns_wrapped_array")
public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) { public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) {
this.prefixNsWrappedArray = prefixNsWrappedArray; this.prefixNsWrappedArray = prefixNsWrappedArray;
} }