forked from loafle/openapi-generator-original
update samples, update html doc
This commit is contained in:
parent
4626b185fe
commit
1231b1ab04
@ -690,7 +690,7 @@ public class ApiClient extends JavaTimeFormatter {
|
||||
* @param headerParams The header 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) {
|
||||
Authentication auth = authentications.get(authName);
|
||||
if (auth == null) {
|
||||
|
@ -711,7 +711,7 @@ public class ApiClient extends JavaTimeFormatter {
|
||||
* @param headerParams The header 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) {
|
||||
Authentication auth = authentications.get(authName);
|
||||
if (auth == null) {
|
||||
|
@ -1 +1 @@
|
||||
5.0.0-SNAPSHOT
|
||||
5.3.0-SNAPSHOT
|
@ -180,7 +180,7 @@ font-style: italic;
|
||||
</head>
|
||||
<body>
|
||||
<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>
|
||||
<li>in this API description</li>
|
||||
<li>in operation summaries</li>
|
||||
|
@ -1 +1 @@
|
||||
5.0.0-SNAPSHOT
|
||||
5.3.0-SNAPSHOT
|
@ -1323,8 +1323,6 @@ font-style: italic;
|
||||
<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="#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>
|
||||
|
||||
<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> <!-- field-items -->
|
||||
</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>
|
||||
</html>
|
||||
|
@ -1 +1 @@
|
||||
5.0.0-SNAPSHOT
|
||||
5.3.0-SNAPSHOT
|
File diff suppressed because one or more lines are too long
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -48,6 +48,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapString;
|
||||
}
|
||||
|
||||
@JsonProperty("map_string")
|
||||
public void setMapString(Map<String, String> mapString) {
|
||||
this.mapString = mapString;
|
||||
}
|
||||
@ -68,6 +69,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("map_number")
|
||||
public void setMapNumber(Map<String, BigDecimal> mapNumber) {
|
||||
this.mapNumber = mapNumber;
|
||||
}
|
||||
@ -88,6 +90,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("map_integer")
|
||||
public void setMapInteger(Map<String, Integer> mapInteger) {
|
||||
this.mapInteger = mapInteger;
|
||||
}
|
||||
@ -108,6 +111,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("map_boolean")
|
||||
public void setMapBoolean(Map<String, Boolean> mapBoolean) {
|
||||
this.mapBoolean = mapBoolean;
|
||||
}
|
||||
@ -128,6 +132,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapArrayInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("map_array_integer")
|
||||
public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
|
||||
this.mapArrayInteger = mapArrayInteger;
|
||||
}
|
||||
@ -148,6 +153,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapArrayAnytype;
|
||||
}
|
||||
|
||||
@JsonProperty("map_array_anytype")
|
||||
public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
|
||||
this.mapArrayAnytype = mapArrayAnytype;
|
||||
}
|
||||
@ -168,6 +174,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapMapString;
|
||||
}
|
||||
|
||||
@JsonProperty("map_map_string")
|
||||
public void setMapMapString(Map<String, Map<String, String>> mapMapString) {
|
||||
this.mapMapString = mapMapString;
|
||||
}
|
||||
@ -188,6 +195,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapMapAnytype;
|
||||
}
|
||||
|
||||
@JsonProperty("map_map_anytype")
|
||||
public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
|
||||
this.mapMapAnytype = mapMapAnytype;
|
||||
}
|
||||
@ -208,6 +216,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return anytype1;
|
||||
}
|
||||
|
||||
@JsonProperty("anytype_1")
|
||||
public void setAnytype1(Object anytype1) {
|
||||
this.anytype1 = anytype1;
|
||||
}
|
||||
@ -228,6 +237,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return anytype2;
|
||||
}
|
||||
|
||||
@JsonProperty("anytype_2")
|
||||
public void setAnytype2(Object anytype2) {
|
||||
this.anytype2 = anytype2;
|
||||
}
|
||||
@ -248,6 +258,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return anytype3;
|
||||
}
|
||||
|
||||
@JsonProperty("anytype_3")
|
||||
public void setAnytype3(Object anytype3) {
|
||||
this.anytype3 = anytype3;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -44,6 +44,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return className;
|
||||
}
|
||||
|
||||
@JsonProperty("className")
|
||||
public void setClassName(String className) {
|
||||
this.className = className;
|
||||
}
|
||||
@ -64,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return color;
|
||||
}
|
||||
|
||||
@JsonProperty("color")
|
||||
public void setColor(String color) {
|
||||
this.color = color;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayArrayNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("ArrayArrayNumber")
|
||||
public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) {
|
||||
this.arrayArrayNumber = arrayArrayNumber;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("ArrayNumber")
|
||||
public void setArrayNumber(List<BigDecimal> arrayNumber) {
|
||||
this.arrayNumber = arrayNumber;
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayOfString;
|
||||
}
|
||||
|
||||
@JsonProperty("array_of_string")
|
||||
public void setArrayOfString(List<String> arrayOfString) {
|
||||
this.arrayOfString = arrayOfString;
|
||||
}
|
||||
@ -59,6 +60,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayArrayOfInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("array_array_of_integer")
|
||||
public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
|
||||
this.arrayArrayOfInteger = arrayArrayOfInteger;
|
||||
}
|
||||
@ -79,6 +81,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayArrayOfModel;
|
||||
}
|
||||
|
||||
@JsonProperty("array_array_of_model")
|
||||
public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
|
||||
this.arrayArrayOfModel = arrayArrayOfModel;
|
||||
}
|
||||
|
@ -69,6 +69,7 @@ public enum KindEnum {
|
||||
return kind;
|
||||
}
|
||||
|
||||
@JsonProperty("kind")
|
||||
public void setKind(KindEnum kind) {
|
||||
this.kind = kind;
|
||||
}
|
||||
|
@ -67,6 +67,7 @@ public enum KindEnum {
|
||||
return kind;
|
||||
}
|
||||
|
||||
@JsonProperty("kind")
|
||||
public void setKind(KindEnum kind) {
|
||||
this.kind = kind;
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return smallCamel;
|
||||
}
|
||||
|
||||
@JsonProperty("smallCamel")
|
||||
public void setSmallCamel(String smallCamel) {
|
||||
this.smallCamel = smallCamel;
|
||||
}
|
||||
@ -59,6 +60,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return capitalCamel;
|
||||
}
|
||||
|
||||
@JsonProperty("CapitalCamel")
|
||||
public void setCapitalCamel(String capitalCamel) {
|
||||
this.capitalCamel = capitalCamel;
|
||||
}
|
||||
@ -79,6 +81,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return smallSnake;
|
||||
}
|
||||
|
||||
@JsonProperty("small_Snake")
|
||||
public void setSmallSnake(String smallSnake) {
|
||||
this.smallSnake = smallSnake;
|
||||
}
|
||||
@ -99,6 +102,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return capitalSnake;
|
||||
}
|
||||
|
||||
@JsonProperty("Capital_Snake")
|
||||
public void setCapitalSnake(String capitalSnake) {
|
||||
this.capitalSnake = capitalSnake;
|
||||
}
|
||||
@ -119,6 +123,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return scAETHFlowPoints;
|
||||
}
|
||||
|
||||
@JsonProperty("SCA_ETH_Flow_Points")
|
||||
public void setScAETHFlowPoints(String scAETHFlowPoints) {
|
||||
this.scAETHFlowPoints = scAETHFlowPoints;
|
||||
}
|
||||
@ -140,6 +145,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return ATT_NAME;
|
||||
}
|
||||
|
||||
@JsonProperty("ATT_NAME")
|
||||
public void setATTNAME(String ATT_NAME) {
|
||||
this.ATT_NAME = ATT_NAME;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return declawed;
|
||||
}
|
||||
|
||||
@JsonProperty("declawed")
|
||||
public void setDeclawed(Boolean declawed) {
|
||||
this.declawed = declawed;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return declawed;
|
||||
}
|
||||
|
||||
@JsonProperty("declawed")
|
||||
public void setDeclawed(Boolean declawed) {
|
||||
this.declawed = declawed;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -56,6 +57,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return propertyClass;
|
||||
}
|
||||
|
||||
@JsonProperty("_class")
|
||||
public void setPropertyClass(String propertyClass) {
|
||||
this.propertyClass = propertyClass;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return client;
|
||||
}
|
||||
|
||||
@JsonProperty("client")
|
||||
public void setClient(String client) {
|
||||
this.client = client;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return breed;
|
||||
}
|
||||
|
||||
@JsonProperty("breed")
|
||||
public void setBreed(String breed) {
|
||||
this.breed = breed;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return breed;
|
||||
}
|
||||
|
||||
@JsonProperty("breed")
|
||||
public void setBreed(String breed) {
|
||||
this.breed = breed;
|
||||
}
|
||||
|
@ -103,6 +103,7 @@ public enum ArrayEnumEnum {
|
||||
return justSymbol;
|
||||
}
|
||||
|
||||
@JsonProperty("just_symbol")
|
||||
public void setJustSymbol(JustSymbolEnum justSymbol) {
|
||||
this.justSymbol = justSymbol;
|
||||
}
|
||||
@ -123,6 +124,7 @@ public enum ArrayEnumEnum {
|
||||
return arrayEnum;
|
||||
}
|
||||
|
||||
@JsonProperty("array_enum")
|
||||
public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) {
|
||||
this.arrayEnum = arrayEnum;
|
||||
}
|
||||
|
@ -171,6 +171,7 @@ public enum EnumNumberEnum {
|
||||
return enumString;
|
||||
}
|
||||
|
||||
@JsonProperty("enum_string")
|
||||
public void setEnumString(EnumStringEnum enumString) {
|
||||
this.enumString = enumString;
|
||||
}
|
||||
@ -192,6 +193,7 @@ public enum EnumNumberEnum {
|
||||
return enumStringRequired;
|
||||
}
|
||||
|
||||
@JsonProperty("enum_string_required")
|
||||
public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) {
|
||||
this.enumStringRequired = enumStringRequired;
|
||||
}
|
||||
@ -212,6 +214,7 @@ public enum EnumNumberEnum {
|
||||
return enumInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("enum_integer")
|
||||
public void setEnumInteger(EnumIntegerEnum enumInteger) {
|
||||
this.enumInteger = enumInteger;
|
||||
}
|
||||
@ -232,6 +235,7 @@ public enum EnumNumberEnum {
|
||||
return enumNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("enum_number")
|
||||
public void setEnumNumber(EnumNumberEnum enumNumber) {
|
||||
this.enumNumber = enumNumber;
|
||||
}
|
||||
@ -252,6 +256,7 @@ public enum EnumNumberEnum {
|
||||
return outerEnum;
|
||||
}
|
||||
|
||||
@JsonProperty("outerEnum")
|
||||
public void setOuterEnum(OuterEnum outerEnum) {
|
||||
this.outerEnum = outerEnum;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return file;
|
||||
}
|
||||
|
||||
@JsonProperty("file")
|
||||
public void setFile(java.io.File file) {
|
||||
this.file = file;
|
||||
}
|
||||
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return files;
|
||||
}
|
||||
|
||||
@JsonProperty("files")
|
||||
public void setFiles(List<java.io.File> files) {
|
||||
this.files = files;
|
||||
}
|
||||
|
@ -54,6 +54,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return integer;
|
||||
}
|
||||
|
||||
@JsonProperty("integer")
|
||||
public void setInteger(Integer integer) {
|
||||
this.integer = integer;
|
||||
}
|
||||
@ -76,6 +77,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return int32;
|
||||
}
|
||||
|
||||
@JsonProperty("int32")
|
||||
public void setInt32(Integer int32) {
|
||||
this.int32 = int32;
|
||||
}
|
||||
@ -96,6 +98,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return int64;
|
||||
}
|
||||
|
||||
@JsonProperty("int64")
|
||||
public void setInt64(Long int64) {
|
||||
this.int64 = int64;
|
||||
}
|
||||
@ -119,6 +122,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return number;
|
||||
}
|
||||
|
||||
@JsonProperty("number")
|
||||
public void setNumber(BigDecimal number) {
|
||||
this.number = number;
|
||||
}
|
||||
@ -141,6 +145,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _float;
|
||||
}
|
||||
|
||||
@JsonProperty("float")
|
||||
public void setFloat(Float _float) {
|
||||
this._float = _float;
|
||||
}
|
||||
@ -163,6 +168,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _double;
|
||||
}
|
||||
|
||||
@JsonProperty("double")
|
||||
public void setDouble(Double _double) {
|
||||
this._double = _double;
|
||||
}
|
||||
@ -183,6 +189,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return string;
|
||||
}
|
||||
|
||||
@JsonProperty("string")
|
||||
public void setString(String string) {
|
||||
this.string = string;
|
||||
}
|
||||
@ -204,6 +211,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _byte;
|
||||
}
|
||||
|
||||
@JsonProperty("byte")
|
||||
public void setByte(byte[] _byte) {
|
||||
this._byte = _byte;
|
||||
}
|
||||
@ -224,6 +232,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return binary;
|
||||
}
|
||||
|
||||
@JsonProperty("binary")
|
||||
public void setBinary(File binary) {
|
||||
this.binary = binary;
|
||||
}
|
||||
@ -245,6 +254,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return date;
|
||||
}
|
||||
|
||||
@JsonProperty("date")
|
||||
public void setDate(LocalDate date) {
|
||||
this.date = date;
|
||||
}
|
||||
@ -265,6 +275,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return dateTime;
|
||||
}
|
||||
|
||||
@JsonProperty("dateTime")
|
||||
public void setDateTime(Date dateTime) {
|
||||
this.dateTime = dateTime;
|
||||
}
|
||||
@ -285,6 +296,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return uuid;
|
||||
}
|
||||
|
||||
@JsonProperty("uuid")
|
||||
public void setUuid(UUID uuid) {
|
||||
this.uuid = uuid;
|
||||
}
|
||||
@ -306,6 +318,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return password;
|
||||
}
|
||||
|
||||
@JsonProperty("password")
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
@ -326,6 +339,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return bigDecimal;
|
||||
}
|
||||
|
||||
@JsonProperty("BigDecimal")
|
||||
public void setBigDecimal(BigDecimal bigDecimal) {
|
||||
this.bigDecimal = bigDecimal;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return bar;
|
||||
}
|
||||
|
||||
@JsonProperty("bar")
|
||||
public void setBar(String bar) {
|
||||
this.bar = bar;
|
||||
}
|
||||
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return foo;
|
||||
}
|
||||
|
||||
@JsonProperty("foo")
|
||||
public void setFoo(String foo) {
|
||||
this.foo = foo;
|
||||
}
|
||||
|
@ -73,6 +73,7 @@ public enum InnerEnum {
|
||||
return mapMapOfString;
|
||||
}
|
||||
|
||||
@JsonProperty("map_map_of_string")
|
||||
public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
|
||||
this.mapMapOfString = mapMapOfString;
|
||||
}
|
||||
@ -93,6 +94,7 @@ public enum InnerEnum {
|
||||
return mapOfEnumString;
|
||||
}
|
||||
|
||||
@JsonProperty("map_of_enum_string")
|
||||
public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
|
||||
this.mapOfEnumString = mapOfEnumString;
|
||||
}
|
||||
@ -113,6 +115,7 @@ public enum InnerEnum {
|
||||
return directMap;
|
||||
}
|
||||
|
||||
@JsonProperty("direct_map")
|
||||
public void setDirectMap(Map<String, Boolean> directMap) {
|
||||
this.directMap = directMap;
|
||||
}
|
||||
@ -133,6 +136,7 @@ public enum InnerEnum {
|
||||
return indirectMap;
|
||||
}
|
||||
|
||||
@JsonProperty("indirect_map")
|
||||
public void setIndirectMap(Map<String, Boolean> indirectMap) {
|
||||
this.indirectMap = indirectMap;
|
||||
}
|
||||
|
@ -42,6 +42,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return uuid;
|
||||
}
|
||||
|
||||
@JsonProperty("uuid")
|
||||
public void setUuid(UUID uuid) {
|
||||
this.uuid = uuid;
|
||||
}
|
||||
@ -62,6 +63,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return dateTime;
|
||||
}
|
||||
|
||||
@JsonProperty("dateTime")
|
||||
public void setDateTime(Date dateTime) {
|
||||
this.dateTime = dateTime;
|
||||
}
|
||||
@ -82,6 +84,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return map;
|
||||
}
|
||||
|
||||
@JsonProperty("map")
|
||||
public void setMap(Map<String, Animal> map) {
|
||||
this.map = map;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(Integer name) {
|
||||
this.name = name;
|
||||
}
|
||||
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return propertyClass;
|
||||
}
|
||||
|
||||
@JsonProperty("class")
|
||||
public void setPropertyClass(String propertyClass) {
|
||||
this.propertyClass = propertyClass;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return code;
|
||||
}
|
||||
|
||||
@JsonProperty("code")
|
||||
public void setCode(Integer code) {
|
||||
this.code = code;
|
||||
}
|
||||
@ -56,6 +57,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return type;
|
||||
}
|
||||
|
||||
@JsonProperty("type")
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
@ -76,6 +78,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return message;
|
||||
}
|
||||
|
||||
@JsonProperty("message")
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _return;
|
||||
}
|
||||
|
||||
@JsonProperty("return")
|
||||
public void setReturn(Integer _return) {
|
||||
this._return = _return;
|
||||
}
|
||||
|
@ -40,6 +40,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(Integer name) {
|
||||
this.name = name;
|
||||
}
|
||||
@ -60,6 +61,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return snakeCase;
|
||||
}
|
||||
|
||||
@JsonProperty("snake_case")
|
||||
public void setSnakeCase(Integer snakeCase) {
|
||||
this.snakeCase = snakeCase;
|
||||
}
|
||||
@ -80,6 +82,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return property;
|
||||
}
|
||||
|
||||
@JsonProperty("property")
|
||||
public void setProperty(String property) {
|
||||
this.property = property;
|
||||
}
|
||||
@ -100,6 +103,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _123number;
|
||||
}
|
||||
|
||||
@JsonProperty("123Number")
|
||||
public void set123number(Integer _123number) {
|
||||
this._123number = _123number;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return justNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("JustNumber")
|
||||
public void setJustNumber(BigDecimal justNumber) {
|
||||
this.justNumber = justNumber;
|
||||
}
|
||||
|
@ -73,6 +73,7 @@ public enum StatusEnum {
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -93,6 +94,7 @@ public enum StatusEnum {
|
||||
return petId;
|
||||
}
|
||||
|
||||
@JsonProperty("petId")
|
||||
public void setPetId(Long petId) {
|
||||
this.petId = petId;
|
||||
}
|
||||
@ -113,6 +115,7 @@ public enum StatusEnum {
|
||||
return quantity;
|
||||
}
|
||||
|
||||
@JsonProperty("quantity")
|
||||
public void setQuantity(Integer quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
@ -133,6 +136,7 @@ public enum StatusEnum {
|
||||
return shipDate;
|
||||
}
|
||||
|
||||
@JsonProperty("shipDate")
|
||||
public void setShipDate(Date shipDate) {
|
||||
this.shipDate = shipDate;
|
||||
}
|
||||
@ -154,6 +158,7 @@ public enum StatusEnum {
|
||||
return status;
|
||||
}
|
||||
|
||||
@JsonProperty("status")
|
||||
public void setStatus(StatusEnum status) {
|
||||
this.status = status;
|
||||
}
|
||||
@ -174,6 +179,7 @@ public enum StatusEnum {
|
||||
return complete;
|
||||
}
|
||||
|
||||
@JsonProperty("complete")
|
||||
public void setComplete(Boolean complete) {
|
||||
this.complete = complete;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return myNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("my_number")
|
||||
public void setMyNumber(BigDecimal myNumber) {
|
||||
this.myNumber = myNumber;
|
||||
}
|
||||
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return myString;
|
||||
}
|
||||
|
||||
@JsonProperty("my_string")
|
||||
public void setMyString(String myString) {
|
||||
this.myString = myString;
|
||||
}
|
||||
@ -77,6 +79,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return myBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("my_boolean")
|
||||
public void setMyBoolean(Boolean myBoolean) {
|
||||
this.myBoolean = myBoolean;
|
||||
}
|
||||
|
@ -78,6 +78,7 @@ public enum StatusEnum {
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -98,6 +99,7 @@ public enum StatusEnum {
|
||||
return category;
|
||||
}
|
||||
|
||||
@JsonProperty("category")
|
||||
public void setCategory(Category category) {
|
||||
this.category = category;
|
||||
}
|
||||
@ -119,6 +121,7 @@ public enum StatusEnum {
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
@ -140,6 +143,7 @@ public enum StatusEnum {
|
||||
return photoUrls;
|
||||
}
|
||||
|
||||
@JsonProperty("photoUrls")
|
||||
public void setPhotoUrls(Set<String> photoUrls) {
|
||||
this.photoUrls = photoUrls;
|
||||
}
|
||||
@ -160,6 +164,7 @@ public enum StatusEnum {
|
||||
return tags;
|
||||
}
|
||||
|
||||
@JsonProperty("tags")
|
||||
public void setTags(List<Tag> tags) {
|
||||
this.tags = tags;
|
||||
}
|
||||
@ -181,6 +186,7 @@ public enum StatusEnum {
|
||||
return status;
|
||||
}
|
||||
|
||||
@JsonProperty("status")
|
||||
public void setStatus(StatusEnum status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return bar;
|
||||
}
|
||||
|
||||
@JsonProperty("bar")
|
||||
public void setBar(String bar) {
|
||||
this.bar = bar;
|
||||
}
|
||||
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return baz;
|
||||
}
|
||||
|
||||
@JsonProperty("baz")
|
||||
public void setBaz(String baz) {
|
||||
this.baz = baz;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return $specialPropertyName;
|
||||
}
|
||||
|
||||
@JsonProperty("$special[property.name]")
|
||||
public void set$SpecialPropertyName(Long $specialPropertyName) {
|
||||
this.$specialPropertyName = $specialPropertyName;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -42,6 +42,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return stringItem;
|
||||
}
|
||||
|
||||
@JsonProperty("string_item")
|
||||
public void setStringItem(String stringItem) {
|
||||
this.stringItem = stringItem;
|
||||
}
|
||||
@ -63,6 +64,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return numberItem;
|
||||
}
|
||||
|
||||
@JsonProperty("number_item")
|
||||
public void setNumberItem(BigDecimal numberItem) {
|
||||
this.numberItem = numberItem;
|
||||
}
|
||||
@ -84,6 +86,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return integerItem;
|
||||
}
|
||||
|
||||
@JsonProperty("integer_item")
|
||||
public void setIntegerItem(Integer integerItem) {
|
||||
this.integerItem = integerItem;
|
||||
}
|
||||
@ -105,6 +108,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return boolItem;
|
||||
}
|
||||
|
||||
@JsonProperty("bool_item")
|
||||
public void setBoolItem(Boolean boolItem) {
|
||||
this.boolItem = boolItem;
|
||||
}
|
||||
@ -126,6 +130,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayItem;
|
||||
}
|
||||
|
||||
@JsonProperty("array_item")
|
||||
public void setArrayItem(List<Integer> arrayItem) {
|
||||
this.arrayItem = arrayItem;
|
||||
}
|
||||
|
@ -43,6 +43,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return stringItem;
|
||||
}
|
||||
|
||||
@JsonProperty("string_item")
|
||||
public void setStringItem(String stringItem) {
|
||||
this.stringItem = stringItem;
|
||||
}
|
||||
@ -64,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return numberItem;
|
||||
}
|
||||
|
||||
@JsonProperty("number_item")
|
||||
public void setNumberItem(BigDecimal numberItem) {
|
||||
this.numberItem = numberItem;
|
||||
}
|
||||
@ -85,6 +87,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return floatItem;
|
||||
}
|
||||
|
||||
@JsonProperty("float_item")
|
||||
public void setFloatItem(Float floatItem) {
|
||||
this.floatItem = floatItem;
|
||||
}
|
||||
@ -106,6 +109,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return integerItem;
|
||||
}
|
||||
|
||||
@JsonProperty("integer_item")
|
||||
public void setIntegerItem(Integer integerItem) {
|
||||
this.integerItem = integerItem;
|
||||
}
|
||||
@ -127,6 +131,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return boolItem;
|
||||
}
|
||||
|
||||
@JsonProperty("bool_item")
|
||||
public void setBoolItem(Boolean boolItem) {
|
||||
this.boolItem = boolItem;
|
||||
}
|
||||
@ -148,6 +153,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayItem;
|
||||
}
|
||||
|
||||
@JsonProperty("array_item")
|
||||
public void setArrayItem(List<Integer> arrayItem) {
|
||||
this.arrayItem = arrayItem;
|
||||
}
|
||||
|
@ -41,6 +41,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -61,6 +62,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return username;
|
||||
}
|
||||
|
||||
@JsonProperty("username")
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
@ -81,6 +83,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return firstName;
|
||||
}
|
||||
|
||||
@JsonProperty("firstName")
|
||||
public void setFirstName(String firstName) {
|
||||
this.firstName = firstName;
|
||||
}
|
||||
@ -101,6 +104,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return lastName;
|
||||
}
|
||||
|
||||
@JsonProperty("lastName")
|
||||
public void setLastName(String lastName) {
|
||||
this.lastName = lastName;
|
||||
}
|
||||
@ -121,6 +125,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return email;
|
||||
}
|
||||
|
||||
@JsonProperty("email")
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
@ -141,6 +146,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return password;
|
||||
}
|
||||
|
||||
@JsonProperty("password")
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
@ -161,6 +167,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return phone;
|
||||
}
|
||||
|
||||
@JsonProperty("phone")
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
@ -182,6 +189,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return userStatus;
|
||||
}
|
||||
|
||||
@JsonProperty("userStatus")
|
||||
public void setUserStatus(Integer userStatus) {
|
||||
this.userStatus = userStatus;
|
||||
}
|
||||
|
@ -65,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return attributeString;
|
||||
}
|
||||
|
||||
@JsonProperty("attribute_string")
|
||||
public void setAttributeString(String attributeString) {
|
||||
this.attributeString = attributeString;
|
||||
}
|
||||
@ -85,6 +86,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return attributeNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("attribute_number")
|
||||
public void setAttributeNumber(BigDecimal attributeNumber) {
|
||||
this.attributeNumber = attributeNumber;
|
||||
}
|
||||
@ -105,6 +107,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return attributeInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("attribute_integer")
|
||||
public void setAttributeInteger(Integer attributeInteger) {
|
||||
this.attributeInteger = attributeInteger;
|
||||
}
|
||||
@ -125,6 +128,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return attributeBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("attribute_boolean")
|
||||
public void setAttributeBoolean(Boolean attributeBoolean) {
|
||||
this.attributeBoolean = attributeBoolean;
|
||||
}
|
||||
@ -145,6 +149,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return wrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("wrapped_array")
|
||||
public void setWrappedArray(List<Integer> wrappedArray) {
|
||||
this.wrappedArray = wrappedArray;
|
||||
}
|
||||
@ -165,6 +170,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameString;
|
||||
}
|
||||
|
||||
@JsonProperty("name_string")
|
||||
public void setNameString(String nameString) {
|
||||
this.nameString = nameString;
|
||||
}
|
||||
@ -185,6 +191,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("name_number")
|
||||
public void setNameNumber(BigDecimal nameNumber) {
|
||||
this.nameNumber = nameNumber;
|
||||
}
|
||||
@ -205,6 +212,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("name_integer")
|
||||
public void setNameInteger(Integer nameInteger) {
|
||||
this.nameInteger = nameInteger;
|
||||
}
|
||||
@ -225,6 +233,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("name_boolean")
|
||||
public void setNameBoolean(Boolean nameBoolean) {
|
||||
this.nameBoolean = nameBoolean;
|
||||
}
|
||||
@ -245,6 +254,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameArray;
|
||||
}
|
||||
|
||||
@JsonProperty("name_array")
|
||||
public void setNameArray(List<Integer> nameArray) {
|
||||
this.nameArray = nameArray;
|
||||
}
|
||||
@ -265,6 +275,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameWrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("name_wrapped_array")
|
||||
public void setNameWrappedArray(List<Integer> nameWrappedArray) {
|
||||
this.nameWrappedArray = nameWrappedArray;
|
||||
}
|
||||
@ -285,6 +296,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixString;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_string")
|
||||
public void setPrefixString(String prefixString) {
|
||||
this.prefixString = prefixString;
|
||||
}
|
||||
@ -305,6 +317,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_number")
|
||||
public void setPrefixNumber(BigDecimal prefixNumber) {
|
||||
this.prefixNumber = prefixNumber;
|
||||
}
|
||||
@ -325,6 +338,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_integer")
|
||||
public void setPrefixInteger(Integer prefixInteger) {
|
||||
this.prefixInteger = prefixInteger;
|
||||
}
|
||||
@ -345,6 +359,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_boolean")
|
||||
public void setPrefixBoolean(Boolean prefixBoolean) {
|
||||
this.prefixBoolean = prefixBoolean;
|
||||
}
|
||||
@ -365,6 +380,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixArray;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_array")
|
||||
public void setPrefixArray(List<Integer> prefixArray) {
|
||||
this.prefixArray = prefixArray;
|
||||
}
|
||||
@ -385,6 +401,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixWrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_wrapped_array")
|
||||
public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) {
|
||||
this.prefixWrappedArray = prefixWrappedArray;
|
||||
}
|
||||
@ -405,6 +422,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceString;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_string")
|
||||
public void setNamespaceString(String namespaceString) {
|
||||
this.namespaceString = namespaceString;
|
||||
}
|
||||
@ -425,6 +443,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_number")
|
||||
public void setNamespaceNumber(BigDecimal namespaceNumber) {
|
||||
this.namespaceNumber = namespaceNumber;
|
||||
}
|
||||
@ -445,6 +464,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_integer")
|
||||
public void setNamespaceInteger(Integer namespaceInteger) {
|
||||
this.namespaceInteger = namespaceInteger;
|
||||
}
|
||||
@ -465,6 +485,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_boolean")
|
||||
public void setNamespaceBoolean(Boolean namespaceBoolean) {
|
||||
this.namespaceBoolean = namespaceBoolean;
|
||||
}
|
||||
@ -485,6 +506,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceArray;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_array")
|
||||
public void setNamespaceArray(List<Integer> namespaceArray) {
|
||||
this.namespaceArray = namespaceArray;
|
||||
}
|
||||
@ -505,6 +527,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceWrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_wrapped_array")
|
||||
public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) {
|
||||
this.namespaceWrappedArray = namespaceWrappedArray;
|
||||
}
|
||||
@ -525,6 +548,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsString;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_string")
|
||||
public void setPrefixNsString(String prefixNsString) {
|
||||
this.prefixNsString = prefixNsString;
|
||||
}
|
||||
@ -545,6 +569,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_number")
|
||||
public void setPrefixNsNumber(BigDecimal prefixNsNumber) {
|
||||
this.prefixNsNumber = prefixNsNumber;
|
||||
}
|
||||
@ -565,6 +590,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_integer")
|
||||
public void setPrefixNsInteger(Integer prefixNsInteger) {
|
||||
this.prefixNsInteger = prefixNsInteger;
|
||||
}
|
||||
@ -585,6 +611,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_boolean")
|
||||
public void setPrefixNsBoolean(Boolean prefixNsBoolean) {
|
||||
this.prefixNsBoolean = prefixNsBoolean;
|
||||
}
|
||||
@ -605,6 +632,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsArray;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_array")
|
||||
public void setPrefixNsArray(List<Integer> prefixNsArray) {
|
||||
this.prefixNsArray = prefixNsArray;
|
||||
}
|
||||
@ -625,6 +653,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsWrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_wrapped_array")
|
||||
public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) {
|
||||
this.prefixNsWrappedArray = prefixNsWrappedArray;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -48,6 +48,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapString;
|
||||
}
|
||||
|
||||
@JsonProperty("map_string")
|
||||
public void setMapString(Map<String, String> mapString) {
|
||||
this.mapString = mapString;
|
||||
}
|
||||
@ -68,6 +69,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("map_number")
|
||||
public void setMapNumber(Map<String, BigDecimal> mapNumber) {
|
||||
this.mapNumber = mapNumber;
|
||||
}
|
||||
@ -88,6 +90,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("map_integer")
|
||||
public void setMapInteger(Map<String, Integer> mapInteger) {
|
||||
this.mapInteger = mapInteger;
|
||||
}
|
||||
@ -108,6 +111,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("map_boolean")
|
||||
public void setMapBoolean(Map<String, Boolean> mapBoolean) {
|
||||
this.mapBoolean = mapBoolean;
|
||||
}
|
||||
@ -128,6 +132,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapArrayInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("map_array_integer")
|
||||
public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
|
||||
this.mapArrayInteger = mapArrayInteger;
|
||||
}
|
||||
@ -148,6 +153,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapArrayAnytype;
|
||||
}
|
||||
|
||||
@JsonProperty("map_array_anytype")
|
||||
public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
|
||||
this.mapArrayAnytype = mapArrayAnytype;
|
||||
}
|
||||
@ -168,6 +174,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapMapString;
|
||||
}
|
||||
|
||||
@JsonProperty("map_map_string")
|
||||
public void setMapMapString(Map<String, Map<String, String>> mapMapString) {
|
||||
this.mapMapString = mapMapString;
|
||||
}
|
||||
@ -188,6 +195,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return mapMapAnytype;
|
||||
}
|
||||
|
||||
@JsonProperty("map_map_anytype")
|
||||
public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
|
||||
this.mapMapAnytype = mapMapAnytype;
|
||||
}
|
||||
@ -208,6 +216,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return anytype1;
|
||||
}
|
||||
|
||||
@JsonProperty("anytype_1")
|
||||
public void setAnytype1(Object anytype1) {
|
||||
this.anytype1 = anytype1;
|
||||
}
|
||||
@ -228,6 +237,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return anytype2;
|
||||
}
|
||||
|
||||
@JsonProperty("anytype_2")
|
||||
public void setAnytype2(Object anytype2) {
|
||||
this.anytype2 = anytype2;
|
||||
}
|
||||
@ -248,6 +258,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return anytype3;
|
||||
}
|
||||
|
||||
@JsonProperty("anytype_3")
|
||||
public void setAnytype3(Object anytype3) {
|
||||
this.anytype3 = anytype3;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -44,6 +44,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return className;
|
||||
}
|
||||
|
||||
@JsonProperty("className")
|
||||
public void setClassName(String className) {
|
||||
this.className = className;
|
||||
}
|
||||
@ -64,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return color;
|
||||
}
|
||||
|
||||
@JsonProperty("color")
|
||||
public void setColor(String color) {
|
||||
this.color = color;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayArrayNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("ArrayArrayNumber")
|
||||
public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) {
|
||||
this.arrayArrayNumber = arrayArrayNumber;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("ArrayNumber")
|
||||
public void setArrayNumber(List<BigDecimal> arrayNumber) {
|
||||
this.arrayNumber = arrayNumber;
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayOfString;
|
||||
}
|
||||
|
||||
@JsonProperty("array_of_string")
|
||||
public void setArrayOfString(List<String> arrayOfString) {
|
||||
this.arrayOfString = arrayOfString;
|
||||
}
|
||||
@ -59,6 +60,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayArrayOfInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("array_array_of_integer")
|
||||
public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
|
||||
this.arrayArrayOfInteger = arrayArrayOfInteger;
|
||||
}
|
||||
@ -79,6 +81,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayArrayOfModel;
|
||||
}
|
||||
|
||||
@JsonProperty("array_array_of_model")
|
||||
public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
|
||||
this.arrayArrayOfModel = arrayArrayOfModel;
|
||||
}
|
||||
|
@ -69,6 +69,7 @@ public enum KindEnum {
|
||||
return kind;
|
||||
}
|
||||
|
||||
@JsonProperty("kind")
|
||||
public void setKind(KindEnum kind) {
|
||||
this.kind = kind;
|
||||
}
|
||||
|
@ -67,6 +67,7 @@ public enum KindEnum {
|
||||
return kind;
|
||||
}
|
||||
|
||||
@JsonProperty("kind")
|
||||
public void setKind(KindEnum kind) {
|
||||
this.kind = kind;
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return smallCamel;
|
||||
}
|
||||
|
||||
@JsonProperty("smallCamel")
|
||||
public void setSmallCamel(String smallCamel) {
|
||||
this.smallCamel = smallCamel;
|
||||
}
|
||||
@ -59,6 +60,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return capitalCamel;
|
||||
}
|
||||
|
||||
@JsonProperty("CapitalCamel")
|
||||
public void setCapitalCamel(String capitalCamel) {
|
||||
this.capitalCamel = capitalCamel;
|
||||
}
|
||||
@ -79,6 +81,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return smallSnake;
|
||||
}
|
||||
|
||||
@JsonProperty("small_Snake")
|
||||
public void setSmallSnake(String smallSnake) {
|
||||
this.smallSnake = smallSnake;
|
||||
}
|
||||
@ -99,6 +102,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return capitalSnake;
|
||||
}
|
||||
|
||||
@JsonProperty("Capital_Snake")
|
||||
public void setCapitalSnake(String capitalSnake) {
|
||||
this.capitalSnake = capitalSnake;
|
||||
}
|
||||
@ -119,6 +123,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return scAETHFlowPoints;
|
||||
}
|
||||
|
||||
@JsonProperty("SCA_ETH_Flow_Points")
|
||||
public void setScAETHFlowPoints(String scAETHFlowPoints) {
|
||||
this.scAETHFlowPoints = scAETHFlowPoints;
|
||||
}
|
||||
@ -140,6 +145,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return ATT_NAME;
|
||||
}
|
||||
|
||||
@JsonProperty("ATT_NAME")
|
||||
public void setATTNAME(String ATT_NAME) {
|
||||
this.ATT_NAME = ATT_NAME;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return declawed;
|
||||
}
|
||||
|
||||
@JsonProperty("declawed")
|
||||
public void setDeclawed(Boolean declawed) {
|
||||
this.declawed = declawed;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return declawed;
|
||||
}
|
||||
|
||||
@JsonProperty("declawed")
|
||||
public void setDeclawed(Boolean declawed) {
|
||||
this.declawed = declawed;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -56,6 +57,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return propertyClass;
|
||||
}
|
||||
|
||||
@JsonProperty("_class")
|
||||
public void setPropertyClass(String propertyClass) {
|
||||
this.propertyClass = propertyClass;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return client;
|
||||
}
|
||||
|
||||
@JsonProperty("client")
|
||||
public void setClient(String client) {
|
||||
this.client = client;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return breed;
|
||||
}
|
||||
|
||||
@JsonProperty("breed")
|
||||
public void setBreed(String breed) {
|
||||
this.breed = breed;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return breed;
|
||||
}
|
||||
|
||||
@JsonProperty("breed")
|
||||
public void setBreed(String breed) {
|
||||
this.breed = breed;
|
||||
}
|
||||
|
@ -103,6 +103,7 @@ public enum ArrayEnumEnum {
|
||||
return justSymbol;
|
||||
}
|
||||
|
||||
@JsonProperty("just_symbol")
|
||||
public void setJustSymbol(JustSymbolEnum justSymbol) {
|
||||
this.justSymbol = justSymbol;
|
||||
}
|
||||
@ -123,6 +124,7 @@ public enum ArrayEnumEnum {
|
||||
return arrayEnum;
|
||||
}
|
||||
|
||||
@JsonProperty("array_enum")
|
||||
public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) {
|
||||
this.arrayEnum = arrayEnum;
|
||||
}
|
||||
|
@ -171,6 +171,7 @@ public enum EnumNumberEnum {
|
||||
return enumString;
|
||||
}
|
||||
|
||||
@JsonProperty("enum_string")
|
||||
public void setEnumString(EnumStringEnum enumString) {
|
||||
this.enumString = enumString;
|
||||
}
|
||||
@ -192,6 +193,7 @@ public enum EnumNumberEnum {
|
||||
return enumStringRequired;
|
||||
}
|
||||
|
||||
@JsonProperty("enum_string_required")
|
||||
public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) {
|
||||
this.enumStringRequired = enumStringRequired;
|
||||
}
|
||||
@ -212,6 +214,7 @@ public enum EnumNumberEnum {
|
||||
return enumInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("enum_integer")
|
||||
public void setEnumInteger(EnumIntegerEnum enumInteger) {
|
||||
this.enumInteger = enumInteger;
|
||||
}
|
||||
@ -232,6 +235,7 @@ public enum EnumNumberEnum {
|
||||
return enumNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("enum_number")
|
||||
public void setEnumNumber(EnumNumberEnum enumNumber) {
|
||||
this.enumNumber = enumNumber;
|
||||
}
|
||||
@ -252,6 +256,7 @@ public enum EnumNumberEnum {
|
||||
return outerEnum;
|
||||
}
|
||||
|
||||
@JsonProperty("outerEnum")
|
||||
public void setOuterEnum(OuterEnum outerEnum) {
|
||||
this.outerEnum = outerEnum;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return file;
|
||||
}
|
||||
|
||||
@JsonProperty("file")
|
||||
public void setFile(java.io.File file) {
|
||||
this.file = file;
|
||||
}
|
||||
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return files;
|
||||
}
|
||||
|
||||
@JsonProperty("files")
|
||||
public void setFiles(List<java.io.File> files) {
|
||||
this.files = files;
|
||||
}
|
||||
|
@ -54,6 +54,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return integer;
|
||||
}
|
||||
|
||||
@JsonProperty("integer")
|
||||
public void setInteger(Integer integer) {
|
||||
this.integer = integer;
|
||||
}
|
||||
@ -76,6 +77,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return int32;
|
||||
}
|
||||
|
||||
@JsonProperty("int32")
|
||||
public void setInt32(Integer int32) {
|
||||
this.int32 = int32;
|
||||
}
|
||||
@ -96,6 +98,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return int64;
|
||||
}
|
||||
|
||||
@JsonProperty("int64")
|
||||
public void setInt64(Long int64) {
|
||||
this.int64 = int64;
|
||||
}
|
||||
@ -119,6 +122,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return number;
|
||||
}
|
||||
|
||||
@JsonProperty("number")
|
||||
public void setNumber(BigDecimal number) {
|
||||
this.number = number;
|
||||
}
|
||||
@ -141,6 +145,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _float;
|
||||
}
|
||||
|
||||
@JsonProperty("float")
|
||||
public void setFloat(Float _float) {
|
||||
this._float = _float;
|
||||
}
|
||||
@ -163,6 +168,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _double;
|
||||
}
|
||||
|
||||
@JsonProperty("double")
|
||||
public void setDouble(Double _double) {
|
||||
this._double = _double;
|
||||
}
|
||||
@ -183,6 +189,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return string;
|
||||
}
|
||||
|
||||
@JsonProperty("string")
|
||||
public void setString(String string) {
|
||||
this.string = string;
|
||||
}
|
||||
@ -204,6 +211,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _byte;
|
||||
}
|
||||
|
||||
@JsonProperty("byte")
|
||||
public void setByte(byte[] _byte) {
|
||||
this._byte = _byte;
|
||||
}
|
||||
@ -224,6 +232,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return binary;
|
||||
}
|
||||
|
||||
@JsonProperty("binary")
|
||||
public void setBinary(File binary) {
|
||||
this.binary = binary;
|
||||
}
|
||||
@ -245,6 +254,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return date;
|
||||
}
|
||||
|
||||
@JsonProperty("date")
|
||||
public void setDate(LocalDate date) {
|
||||
this.date = date;
|
||||
}
|
||||
@ -265,6 +275,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return dateTime;
|
||||
}
|
||||
|
||||
@JsonProperty("dateTime")
|
||||
public void setDateTime(Date dateTime) {
|
||||
this.dateTime = dateTime;
|
||||
}
|
||||
@ -285,6 +296,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return uuid;
|
||||
}
|
||||
|
||||
@JsonProperty("uuid")
|
||||
public void setUuid(UUID uuid) {
|
||||
this.uuid = uuid;
|
||||
}
|
||||
@ -306,6 +318,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return password;
|
||||
}
|
||||
|
||||
@JsonProperty("password")
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
@ -326,6 +339,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return bigDecimal;
|
||||
}
|
||||
|
||||
@JsonProperty("BigDecimal")
|
||||
public void setBigDecimal(BigDecimal bigDecimal) {
|
||||
this.bigDecimal = bigDecimal;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return bar;
|
||||
}
|
||||
|
||||
@JsonProperty("bar")
|
||||
public void setBar(String bar) {
|
||||
this.bar = bar;
|
||||
}
|
||||
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return foo;
|
||||
}
|
||||
|
||||
@JsonProperty("foo")
|
||||
public void setFoo(String foo) {
|
||||
this.foo = foo;
|
||||
}
|
||||
|
@ -73,6 +73,7 @@ public enum InnerEnum {
|
||||
return mapMapOfString;
|
||||
}
|
||||
|
||||
@JsonProperty("map_map_of_string")
|
||||
public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
|
||||
this.mapMapOfString = mapMapOfString;
|
||||
}
|
||||
@ -93,6 +94,7 @@ public enum InnerEnum {
|
||||
return mapOfEnumString;
|
||||
}
|
||||
|
||||
@JsonProperty("map_of_enum_string")
|
||||
public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
|
||||
this.mapOfEnumString = mapOfEnumString;
|
||||
}
|
||||
@ -113,6 +115,7 @@ public enum InnerEnum {
|
||||
return directMap;
|
||||
}
|
||||
|
||||
@JsonProperty("direct_map")
|
||||
public void setDirectMap(Map<String, Boolean> directMap) {
|
||||
this.directMap = directMap;
|
||||
}
|
||||
@ -133,6 +136,7 @@ public enum InnerEnum {
|
||||
return indirectMap;
|
||||
}
|
||||
|
||||
@JsonProperty("indirect_map")
|
||||
public void setIndirectMap(Map<String, Boolean> indirectMap) {
|
||||
this.indirectMap = indirectMap;
|
||||
}
|
||||
|
@ -42,6 +42,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return uuid;
|
||||
}
|
||||
|
||||
@JsonProperty("uuid")
|
||||
public void setUuid(UUID uuid) {
|
||||
this.uuid = uuid;
|
||||
}
|
||||
@ -62,6 +63,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return dateTime;
|
||||
}
|
||||
|
||||
@JsonProperty("dateTime")
|
||||
public void setDateTime(Date dateTime) {
|
||||
this.dateTime = dateTime;
|
||||
}
|
||||
@ -82,6 +84,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return map;
|
||||
}
|
||||
|
||||
@JsonProperty("map")
|
||||
public void setMap(Map<String, Animal> map) {
|
||||
this.map = map;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(Integer name) {
|
||||
this.name = name;
|
||||
}
|
||||
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return propertyClass;
|
||||
}
|
||||
|
||||
@JsonProperty("class")
|
||||
public void setPropertyClass(String propertyClass) {
|
||||
this.propertyClass = propertyClass;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return code;
|
||||
}
|
||||
|
||||
@JsonProperty("code")
|
||||
public void setCode(Integer code) {
|
||||
this.code = code;
|
||||
}
|
||||
@ -56,6 +57,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return type;
|
||||
}
|
||||
|
||||
@JsonProperty("type")
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
@ -76,6 +78,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return message;
|
||||
}
|
||||
|
||||
@JsonProperty("message")
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _return;
|
||||
}
|
||||
|
||||
@JsonProperty("return")
|
||||
public void setReturn(Integer _return) {
|
||||
this._return = _return;
|
||||
}
|
||||
|
@ -40,6 +40,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(Integer name) {
|
||||
this.name = name;
|
||||
}
|
||||
@ -60,6 +61,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return snakeCase;
|
||||
}
|
||||
|
||||
@JsonProperty("snake_case")
|
||||
public void setSnakeCase(Integer snakeCase) {
|
||||
this.snakeCase = snakeCase;
|
||||
}
|
||||
@ -80,6 +82,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return property;
|
||||
}
|
||||
|
||||
@JsonProperty("property")
|
||||
public void setProperty(String property) {
|
||||
this.property = property;
|
||||
}
|
||||
@ -100,6 +103,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return _123number;
|
||||
}
|
||||
|
||||
@JsonProperty("123Number")
|
||||
public void set123number(Integer _123number) {
|
||||
this._123number = _123number;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return justNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("JustNumber")
|
||||
public void setJustNumber(BigDecimal justNumber) {
|
||||
this.justNumber = justNumber;
|
||||
}
|
||||
|
@ -73,6 +73,7 @@ public enum StatusEnum {
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -93,6 +94,7 @@ public enum StatusEnum {
|
||||
return petId;
|
||||
}
|
||||
|
||||
@JsonProperty("petId")
|
||||
public void setPetId(Long petId) {
|
||||
this.petId = petId;
|
||||
}
|
||||
@ -113,6 +115,7 @@ public enum StatusEnum {
|
||||
return quantity;
|
||||
}
|
||||
|
||||
@JsonProperty("quantity")
|
||||
public void setQuantity(Integer quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
@ -133,6 +136,7 @@ public enum StatusEnum {
|
||||
return shipDate;
|
||||
}
|
||||
|
||||
@JsonProperty("shipDate")
|
||||
public void setShipDate(Date shipDate) {
|
||||
this.shipDate = shipDate;
|
||||
}
|
||||
@ -154,6 +158,7 @@ public enum StatusEnum {
|
||||
return status;
|
||||
}
|
||||
|
||||
@JsonProperty("status")
|
||||
public void setStatus(StatusEnum status) {
|
||||
this.status = status;
|
||||
}
|
||||
@ -174,6 +179,7 @@ public enum StatusEnum {
|
||||
return complete;
|
||||
}
|
||||
|
||||
@JsonProperty("complete")
|
||||
public void setComplete(Boolean complete) {
|
||||
this.complete = complete;
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return myNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("my_number")
|
||||
public void setMyNumber(BigDecimal myNumber) {
|
||||
this.myNumber = myNumber;
|
||||
}
|
||||
@ -57,6 +58,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return myString;
|
||||
}
|
||||
|
||||
@JsonProperty("my_string")
|
||||
public void setMyString(String myString) {
|
||||
this.myString = myString;
|
||||
}
|
||||
@ -77,6 +79,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return myBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("my_boolean")
|
||||
public void setMyBoolean(Boolean myBoolean) {
|
||||
this.myBoolean = myBoolean;
|
||||
}
|
||||
|
@ -78,6 +78,7 @@ public enum StatusEnum {
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -98,6 +99,7 @@ public enum StatusEnum {
|
||||
return category;
|
||||
}
|
||||
|
||||
@JsonProperty("category")
|
||||
public void setCategory(Category category) {
|
||||
this.category = category;
|
||||
}
|
||||
@ -119,6 +121,7 @@ public enum StatusEnum {
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
@ -140,6 +143,7 @@ public enum StatusEnum {
|
||||
return photoUrls;
|
||||
}
|
||||
|
||||
@JsonProperty("photoUrls")
|
||||
public void setPhotoUrls(Set<String> photoUrls) {
|
||||
this.photoUrls = photoUrls;
|
||||
}
|
||||
@ -160,6 +164,7 @@ public enum StatusEnum {
|
||||
return tags;
|
||||
}
|
||||
|
||||
@JsonProperty("tags")
|
||||
public void setTags(List<Tag> tags) {
|
||||
this.tags = tags;
|
||||
}
|
||||
@ -181,6 +186,7 @@ public enum StatusEnum {
|
||||
return status;
|
||||
}
|
||||
|
||||
@JsonProperty("status")
|
||||
public void setStatus(StatusEnum status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return bar;
|
||||
}
|
||||
|
||||
@JsonProperty("bar")
|
||||
public void setBar(String bar) {
|
||||
this.bar = bar;
|
||||
}
|
||||
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return baz;
|
||||
}
|
||||
|
||||
@JsonProperty("baz")
|
||||
public void setBaz(String baz) {
|
||||
this.baz = baz;
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return $specialPropertyName;
|
||||
}
|
||||
|
||||
@JsonProperty("$special[property.name]")
|
||||
public void set$SpecialPropertyName(Long $specialPropertyName) {
|
||||
this.$specialPropertyName = $specialPropertyName;
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -55,6 +56,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return name;
|
||||
}
|
||||
|
||||
@JsonProperty("name")
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
@ -42,6 +42,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return stringItem;
|
||||
}
|
||||
|
||||
@JsonProperty("string_item")
|
||||
public void setStringItem(String stringItem) {
|
||||
this.stringItem = stringItem;
|
||||
}
|
||||
@ -63,6 +64,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return numberItem;
|
||||
}
|
||||
|
||||
@JsonProperty("number_item")
|
||||
public void setNumberItem(BigDecimal numberItem) {
|
||||
this.numberItem = numberItem;
|
||||
}
|
||||
@ -84,6 +86,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return integerItem;
|
||||
}
|
||||
|
||||
@JsonProperty("integer_item")
|
||||
public void setIntegerItem(Integer integerItem) {
|
||||
this.integerItem = integerItem;
|
||||
}
|
||||
@ -105,6 +108,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return boolItem;
|
||||
}
|
||||
|
||||
@JsonProperty("bool_item")
|
||||
public void setBoolItem(Boolean boolItem) {
|
||||
this.boolItem = boolItem;
|
||||
}
|
||||
@ -126,6 +130,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayItem;
|
||||
}
|
||||
|
||||
@JsonProperty("array_item")
|
||||
public void setArrayItem(List<Integer> arrayItem) {
|
||||
this.arrayItem = arrayItem;
|
||||
}
|
||||
|
@ -43,6 +43,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return stringItem;
|
||||
}
|
||||
|
||||
@JsonProperty("string_item")
|
||||
public void setStringItem(String stringItem) {
|
||||
this.stringItem = stringItem;
|
||||
}
|
||||
@ -64,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return numberItem;
|
||||
}
|
||||
|
||||
@JsonProperty("number_item")
|
||||
public void setNumberItem(BigDecimal numberItem) {
|
||||
this.numberItem = numberItem;
|
||||
}
|
||||
@ -85,6 +87,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return floatItem;
|
||||
}
|
||||
|
||||
@JsonProperty("float_item")
|
||||
public void setFloatItem(Float floatItem) {
|
||||
this.floatItem = floatItem;
|
||||
}
|
||||
@ -106,6 +109,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return integerItem;
|
||||
}
|
||||
|
||||
@JsonProperty("integer_item")
|
||||
public void setIntegerItem(Integer integerItem) {
|
||||
this.integerItem = integerItem;
|
||||
}
|
||||
@ -127,6 +131,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return boolItem;
|
||||
}
|
||||
|
||||
@JsonProperty("bool_item")
|
||||
public void setBoolItem(Boolean boolItem) {
|
||||
this.boolItem = boolItem;
|
||||
}
|
||||
@ -148,6 +153,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return arrayItem;
|
||||
}
|
||||
|
||||
@JsonProperty("array_item")
|
||||
public void setArrayItem(List<Integer> arrayItem) {
|
||||
this.arrayItem = arrayItem;
|
||||
}
|
||||
|
@ -41,6 +41,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return id;
|
||||
}
|
||||
|
||||
@JsonProperty("id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
@ -61,6 +62,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return username;
|
||||
}
|
||||
|
||||
@JsonProperty("username")
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
@ -81,6 +83,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return firstName;
|
||||
}
|
||||
|
||||
@JsonProperty("firstName")
|
||||
public void setFirstName(String firstName) {
|
||||
this.firstName = firstName;
|
||||
}
|
||||
@ -101,6 +104,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return lastName;
|
||||
}
|
||||
|
||||
@JsonProperty("lastName")
|
||||
public void setLastName(String lastName) {
|
||||
this.lastName = lastName;
|
||||
}
|
||||
@ -121,6 +125,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return email;
|
||||
}
|
||||
|
||||
@JsonProperty("email")
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
@ -141,6 +146,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return password;
|
||||
}
|
||||
|
||||
@JsonProperty("password")
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
@ -161,6 +167,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return phone;
|
||||
}
|
||||
|
||||
@JsonProperty("phone")
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
@ -182,6 +189,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return userStatus;
|
||||
}
|
||||
|
||||
@JsonProperty("userStatus")
|
||||
public void setUserStatus(Integer userStatus) {
|
||||
this.userStatus = userStatus;
|
||||
}
|
||||
|
@ -65,6 +65,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return attributeString;
|
||||
}
|
||||
|
||||
@JsonProperty("attribute_string")
|
||||
public void setAttributeString(String attributeString) {
|
||||
this.attributeString = attributeString;
|
||||
}
|
||||
@ -85,6 +86,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return attributeNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("attribute_number")
|
||||
public void setAttributeNumber(BigDecimal attributeNumber) {
|
||||
this.attributeNumber = attributeNumber;
|
||||
}
|
||||
@ -105,6 +107,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return attributeInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("attribute_integer")
|
||||
public void setAttributeInteger(Integer attributeInteger) {
|
||||
this.attributeInteger = attributeInteger;
|
||||
}
|
||||
@ -125,6 +128,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return attributeBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("attribute_boolean")
|
||||
public void setAttributeBoolean(Boolean attributeBoolean) {
|
||||
this.attributeBoolean = attributeBoolean;
|
||||
}
|
||||
@ -145,6 +149,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return wrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("wrapped_array")
|
||||
public void setWrappedArray(List<Integer> wrappedArray) {
|
||||
this.wrappedArray = wrappedArray;
|
||||
}
|
||||
@ -165,6 +170,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameString;
|
||||
}
|
||||
|
||||
@JsonProperty("name_string")
|
||||
public void setNameString(String nameString) {
|
||||
this.nameString = nameString;
|
||||
}
|
||||
@ -185,6 +191,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("name_number")
|
||||
public void setNameNumber(BigDecimal nameNumber) {
|
||||
this.nameNumber = nameNumber;
|
||||
}
|
||||
@ -205,6 +212,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("name_integer")
|
||||
public void setNameInteger(Integer nameInteger) {
|
||||
this.nameInteger = nameInteger;
|
||||
}
|
||||
@ -225,6 +233,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("name_boolean")
|
||||
public void setNameBoolean(Boolean nameBoolean) {
|
||||
this.nameBoolean = nameBoolean;
|
||||
}
|
||||
@ -245,6 +254,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameArray;
|
||||
}
|
||||
|
||||
@JsonProperty("name_array")
|
||||
public void setNameArray(List<Integer> nameArray) {
|
||||
this.nameArray = nameArray;
|
||||
}
|
||||
@ -265,6 +275,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return nameWrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("name_wrapped_array")
|
||||
public void setNameWrappedArray(List<Integer> nameWrappedArray) {
|
||||
this.nameWrappedArray = nameWrappedArray;
|
||||
}
|
||||
@ -285,6 +296,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixString;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_string")
|
||||
public void setPrefixString(String prefixString) {
|
||||
this.prefixString = prefixString;
|
||||
}
|
||||
@ -305,6 +317,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_number")
|
||||
public void setPrefixNumber(BigDecimal prefixNumber) {
|
||||
this.prefixNumber = prefixNumber;
|
||||
}
|
||||
@ -325,6 +338,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_integer")
|
||||
public void setPrefixInteger(Integer prefixInteger) {
|
||||
this.prefixInteger = prefixInteger;
|
||||
}
|
||||
@ -345,6 +359,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_boolean")
|
||||
public void setPrefixBoolean(Boolean prefixBoolean) {
|
||||
this.prefixBoolean = prefixBoolean;
|
||||
}
|
||||
@ -365,6 +380,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixArray;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_array")
|
||||
public void setPrefixArray(List<Integer> prefixArray) {
|
||||
this.prefixArray = prefixArray;
|
||||
}
|
||||
@ -385,6 +401,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixWrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_wrapped_array")
|
||||
public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) {
|
||||
this.prefixWrappedArray = prefixWrappedArray;
|
||||
}
|
||||
@ -405,6 +422,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceString;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_string")
|
||||
public void setNamespaceString(String namespaceString) {
|
||||
this.namespaceString = namespaceString;
|
||||
}
|
||||
@ -425,6 +443,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_number")
|
||||
public void setNamespaceNumber(BigDecimal namespaceNumber) {
|
||||
this.namespaceNumber = namespaceNumber;
|
||||
}
|
||||
@ -445,6 +464,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_integer")
|
||||
public void setNamespaceInteger(Integer namespaceInteger) {
|
||||
this.namespaceInteger = namespaceInteger;
|
||||
}
|
||||
@ -465,6 +485,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_boolean")
|
||||
public void setNamespaceBoolean(Boolean namespaceBoolean) {
|
||||
this.namespaceBoolean = namespaceBoolean;
|
||||
}
|
||||
@ -485,6 +506,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceArray;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_array")
|
||||
public void setNamespaceArray(List<Integer> namespaceArray) {
|
||||
this.namespaceArray = namespaceArray;
|
||||
}
|
||||
@ -505,6 +527,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return namespaceWrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("namespace_wrapped_array")
|
||||
public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) {
|
||||
this.namespaceWrappedArray = namespaceWrappedArray;
|
||||
}
|
||||
@ -525,6 +548,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsString;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_string")
|
||||
public void setPrefixNsString(String prefixNsString) {
|
||||
this.prefixNsString = prefixNsString;
|
||||
}
|
||||
@ -545,6 +569,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsNumber;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_number")
|
||||
public void setPrefixNsNumber(BigDecimal prefixNsNumber) {
|
||||
this.prefixNsNumber = prefixNsNumber;
|
||||
}
|
||||
@ -565,6 +590,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsInteger;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_integer")
|
||||
public void setPrefixNsInteger(Integer prefixNsInteger) {
|
||||
this.prefixNsInteger = prefixNsInteger;
|
||||
}
|
||||
@ -585,6 +611,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsBoolean;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_boolean")
|
||||
public void setPrefixNsBoolean(Boolean prefixNsBoolean) {
|
||||
this.prefixNsBoolean = prefixNsBoolean;
|
||||
}
|
||||
@ -605,6 +632,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsArray;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_array")
|
||||
public void setPrefixNsArray(List<Integer> prefixNsArray) {
|
||||
this.prefixNsArray = prefixNsArray;
|
||||
}
|
||||
@ -625,6 +653,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
return prefixNsWrappedArray;
|
||||
}
|
||||
|
||||
@JsonProperty("prefix_ns_wrapped_array")
|
||||
public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) {
|
||||
this.prefixNsWrappedArray = prefixNsWrappedArray;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user