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 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) {

View File

@ -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) {

View File

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

View File

@ -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>

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="#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>

View File

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

View File

@ -766,7 +766,7 @@ ul.nav-tabs {
.json-schema-view.collapsed .description, .json-schema-view.collapsed .property, json-schema-view.collapsed .description, json-schema-view.collapsed .property {
display: none
}
.json-schema-view.collapsed .closeing.brace, json-schema-view.collapsed .closeing.brace {
.json-schema-view.collapsed .closing.brace, json-schema-view.collapsed .closing.brace {
display: inline-block
}
.json-schema-view.collapsed .toggle-handle, json-schema-view.collapsed .toggle-handle {
@ -831,7 +831,7 @@ ul.nav-tabs {
.json-schema-view.json-schema-view-dark.collapsed .description, .json-schema-view.json-schema-view-dark.collapsed .property, json-schema-view[json-schema-view-dark].collapsed .description, json-schema-view[json-schema-view-dark].collapsed .property {
display: none
}
.json-schema-view.json-schema-view-dark.collapsed .closeing.brace, json-schema-view[json-schema-view-dark].collapsed .closeing.brace {
.json-schema-view.json-schema-view-dark.collapsed .closing.brace, json-schema-view[json-schema-view-dark].collapsed .closing.brace {
display: inline-block
}
.json-schema-view.json-schema-view-dark.collapsed .toggle-handle, json-schema-view[json-schema-view-dark].collapsed .toggle-handle {
@ -880,33 +880,6 @@ ul.nav-tabs {
"xml" : {
"name" : "Category"
}
};
defs["inline_object"] = {
"type" : "object",
"properties" : {
"name" : {
"type" : "string",
"description" : "Updated name of the pet"
},
"status" : {
"type" : "string",
"description" : "Updated status of the pet"
}
}
};
defs["inline_object_1"] = {
"type" : "object",
"properties" : {
"additionalMetadata" : {
"type" : "string",
"description" : "Additional data to pass to server"
},
"file" : {
"type" : "string",
"description" : "file to upload",
"format" : "binary"
}
}
};
defs["Order"] = {
"title" : "Pet Order",
@ -982,6 +955,7 @@ ul.nav-tabs {
"status" : {
"type" : "string",
"description" : "pet status in the store",
"deprecated" : true,
"enum" : [ "available", "pending", "sold" ]
}
},
@ -1185,7 +1159,35 @@ ul.nav-tabs {
\
-H "Accept: application/xml,application/json" \
-H "Content-Type: application/json,application/xml" \
"http://petstore.swagger.io/v2/pet"</code></pre>
"http://petstore.swagger.io/v2/pet" \
-d '{
&quot;photoUrls&quot; : [ &quot;photoUrls&quot;, &quot;photoUrls&quot; ],
&quot;name&quot; : &quot;doggie&quot;,
&quot;id&quot; : 0,
&quot;category&quot; : {
&quot;name&quot; : &quot;name&quot;,
&quot;id&quot; : 6
},
&quot;tags&quot; : [ {
&quot;name&quot; : &quot;name&quot;,
&quot;id&quot; : 1
}, {
&quot;name&quot; : &quot;name&quot;,
&quot;id&quot; : 1
} ],
&quot;status&quot; : &quot;available&quot;
}' \
-d '&lt;Pet&gt;
&lt;id&gt;123456789&lt;/id&gt;
&lt;name&gt;doggie&lt;/name&gt;
&lt;photoUrls&gt;
&lt;photoUrls&gt;aeiou&lt;/photoUrls&gt;
&lt;/photoUrls&gt;
&lt;tags&gt;
&lt;/tags&gt;
&lt;status&gt;aeiou&lt;/status&gt;
&lt;/Pet&gt;'
</code></pre>
</div>
<div class="tab-pane" id="examples-Pet-addPet-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -1609,7 +1611,8 @@ $(document).ready(function() {
<div class="tab-pane active" id="examples-Pet-deletePet-0-curl">
<pre class="prettyprint"><code class="language-bsh">curl -X DELETE \
\
"http://petstore.swagger.io/v2/pet/{petId}"</code></pre>
"http://petstore.swagger.io/v2/pet/{petId}"
</code></pre>
</div>
<div class="tab-pane" id="examples-Pet-deletePet-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -1971,7 +1974,8 @@ Pet id to delete
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
\
-H "Accept: application/xml,application/json" \
"http://petstore.swagger.io/v2/pet/findByStatus?status="</code></pre>
"http://petstore.swagger.io/v2/pet/findByStatus?status="
</code></pre>
</div>
<div class="tab-pane" id="examples-Pet-findPetsByStatus-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -2375,7 +2379,8 @@ Status values that need to be considered for filter
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
\
-H "Accept: application/xml,application/json" \
"http://petstore.swagger.io/v2/pet/findByTags?tags="</code></pre>
"http://petstore.swagger.io/v2/pet/findByTags?tags="
</code></pre>
</div>
<div class="tab-pane" id="examples-Pet-findPetsByTags-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -2779,7 +2784,8 @@ Tags to filter by
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
-H "api_key: [[apiKey]]" \
-H "Accept: application/xml,application/json" \
"http://petstore.swagger.io/v2/pet/{petId}"</code></pre>
"http://petstore.swagger.io/v2/pet/{petId}"
</code></pre>
</div>
<div class="tab-pane" id="examples-Pet-getPetById-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -3212,7 +3218,35 @@ ID of pet to return
\
-H "Accept: application/xml,application/json" \
-H "Content-Type: application/json,application/xml" \
"http://petstore.swagger.io/v2/pet"</code></pre>
"http://petstore.swagger.io/v2/pet" \
-d '{
&quot;photoUrls&quot; : [ &quot;photoUrls&quot;, &quot;photoUrls&quot; ],
&quot;name&quot; : &quot;doggie&quot;,
&quot;id&quot; : 0,
&quot;category&quot; : {
&quot;name&quot; : &quot;name&quot;,
&quot;id&quot; : 6
},
&quot;tags&quot; : [ {
&quot;name&quot; : &quot;name&quot;,
&quot;id&quot; : 1
}, {
&quot;name&quot; : &quot;name&quot;,
&quot;id&quot; : 1
} ],
&quot;status&quot; : &quot;available&quot;
}' \
-d '&lt;Pet&gt;
&lt;id&gt;123456789&lt;/id&gt;
&lt;name&gt;doggie&lt;/name&gt;
&lt;photoUrls&gt;
&lt;photoUrls&gt;aeiou&lt;/photoUrls&gt;
&lt;/photoUrls&gt;
&lt;tags&gt;
&lt;/tags&gt;
&lt;status&gt;aeiou&lt;/status&gt;
&lt;/Pet&gt;'
</code></pre>
</div>
<div class="tab-pane" id="examples-Pet-updatePet-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -3681,7 +3715,8 @@ $(document).ready(function() {
<pre class="prettyprint"><code class="language-bsh">curl -X POST \
\
-H "Content-Type: application/x-www-form-urlencoded" \
"http://petstore.swagger.io/v2/pet/{petId}"</code></pre>
"http://petstore.swagger.io/v2/pet/{petId}"
</code></pre>
</div>
<div class="tab-pane" id="examples-Pet-updatePetWithForm-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -4077,7 +4112,8 @@ Updated status of the pet
\
-H "Accept: application/json" \
-H "Content-Type: multipart/form-data" \
"http://petstore.swagger.io/v2/pet/{petId}/uploadImage"</code></pre>
"http://petstore.swagger.io/v2/pet/{petId}/uploadImage"
</code></pre>
</div>
<div class="tab-pane" id="examples-Pet-uploadFile-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -4529,7 +4565,8 @@ file to upload
<div class="tab-content">
<div class="tab-pane active" id="examples-Store-deleteOrder-0-curl">
<pre class="prettyprint"><code class="language-bsh">curl -X DELETE \
"http://petstore.swagger.io/v2/store/order/{orderId}"</code></pre>
"http://petstore.swagger.io/v2/store/order/{orderId}"
</code></pre>
</div>
<div class="tab-pane" id="examples-Store-deleteOrder-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -4839,7 +4876,8 @@ ID of the order that needs to be deleted
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
-H "api_key: [[apiKey]]" \
-H "Accept: application/json" \
"http://petstore.swagger.io/v2/store/inventory"</code></pre>
"http://petstore.swagger.io/v2/store/inventory"
</code></pre>
</div>
<div class="tab-pane" id="examples-Store-getInventory-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -5182,7 +5220,8 @@ pub fn main() {
<div class="tab-pane active" id="examples-Store-getOrderById-0-curl">
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
-H "Accept: application/xml,application/json" \
"http://petstore.swagger.io/v2/store/order/{orderId}"</code></pre>
"http://petstore.swagger.io/v2/store/order/{orderId}"
</code></pre>
</div>
<div class="tab-pane" id="examples-Store-getOrderById-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -5575,7 +5614,16 @@ ID of pet that needs to be fetched
<pre class="prettyprint"><code class="language-bsh">curl -X POST \
-H "Accept: application/xml,application/json" \
-H "Content-Type: application/json" \
"http://petstore.swagger.io/v2/store/order"</code></pre>
"http://petstore.swagger.io/v2/store/order" \
-d '{
&quot;petId&quot; : 6,
&quot;quantity&quot; : 1,
&quot;id&quot; : 0,
&quot;shipDate&quot; : &quot;2000-01-23T04:56:07.000+00:00&quot;,
&quot;complete&quot; : false,
&quot;status&quot; : &quot;placed&quot;
}'
</code></pre>
</div>
<div class="tab-pane" id="examples-Store-placeOrder-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -5963,7 +6011,18 @@ $(document).ready(function() {
<pre class="prettyprint"><code class="language-bsh">curl -X POST \
-H "api_key: [[apiKey]]" \
-H "Content-Type: application/json" \
"http://petstore.swagger.io/v2/user"</code></pre>
"http://petstore.swagger.io/v2/user" \
-d '{
&quot;firstName&quot; : &quot;firstName&quot;,
&quot;lastName&quot; : &quot;lastName&quot;,
&quot;password&quot; : &quot;password&quot;,
&quot;userStatus&quot; : 6,
&quot;phone&quot; : &quot;phone&quot;,
&quot;id&quot; : 0,
&quot;email&quot; : &quot;email&quot;,
&quot;username&quot; : &quot;username&quot;
}'
</code></pre>
</div>
<div class="tab-pane" id="examples-User-createUser-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -6307,7 +6366,18 @@ $(document).ready(function() {
<pre class="prettyprint"><code class="language-bsh">curl -X POST \
-H "api_key: [[apiKey]]" \
-H "Content-Type: application/json" \
"http://petstore.swagger.io/v2/user/createWithArray"</code></pre>
"http://petstore.swagger.io/v2/user/createWithArray" \
-d '{
&quot;firstName&quot; : &quot;firstName&quot;,
&quot;lastName&quot; : &quot;lastName&quot;,
&quot;password&quot; : &quot;password&quot;,
&quot;userStatus&quot; : 6,
&quot;phone&quot; : &quot;phone&quot;,
&quot;id&quot; : 0,
&quot;email&quot; : &quot;email&quot;,
&quot;username&quot; : &quot;username&quot;
}'
</code></pre>
</div>
<div class="tab-pane" id="examples-User-createUsersWithArrayInput-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -6654,7 +6724,18 @@ $(document).ready(function() {
<pre class="prettyprint"><code class="language-bsh">curl -X POST \
-H "api_key: [[apiKey]]" \
-H "Content-Type: application/json" \
"http://petstore.swagger.io/v2/user/createWithList"</code></pre>
"http://petstore.swagger.io/v2/user/createWithList" \
-d '{
&quot;firstName&quot; : &quot;firstName&quot;,
&quot;lastName&quot; : &quot;lastName&quot;,
&quot;password&quot; : &quot;password&quot;,
&quot;userStatus&quot; : 6,
&quot;phone&quot; : &quot;phone&quot;,
&quot;id&quot; : 0,
&quot;email&quot; : &quot;email&quot;,
&quot;username&quot; : &quot;username&quot;
}'
</code></pre>
</div>
<div class="tab-pane" id="examples-User-createUsersWithListInput-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -7000,7 +7081,8 @@ $(document).ready(function() {
<div class="tab-pane active" id="examples-User-deleteUser-0-curl">
<pre class="prettyprint"><code class="language-bsh">curl -X DELETE \
-H "api_key: [[apiKey]]" \
"http://petstore.swagger.io/v2/user/{username}"</code></pre>
"http://petstore.swagger.io/v2/user/{username}"
</code></pre>
</div>
<div class="tab-pane" id="examples-User-deleteUser-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -7348,7 +7430,8 @@ The name that needs to be deleted
<div class="tab-pane active" id="examples-User-getUserByName-0-curl">
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
-H "Accept: application/xml,application/json" \
"http://petstore.swagger.io/v2/user/{username}"</code></pre>
"http://petstore.swagger.io/v2/user/{username}"
</code></pre>
</div>
<div class="tab-pane" id="examples-User-getUserByName-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -7737,7 +7820,8 @@ The name that needs to be fetched. Use user1 for testing.
<div class="tab-pane active" id="examples-User-loginUser-0-curl">
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
-H "Accept: application/xml,application/json" \
"http://petstore.swagger.io/v2/user/login?username=&password="</code></pre>
"http://petstore.swagger.io/v2/user/login?username=username_example&password=password_example"
</code></pre>
</div>
<div class="tab-pane" id="examples-User-loginUser-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -8061,7 +8145,7 @@ The password for login in clear text
}
},
"X-Expires-After" : {
"description" : "date in UTC when toekn expires",
"description" : "date in UTC when token expires",
"style" : "simple",
"explode" : false,
"schema" : {
@ -8132,7 +8216,7 @@ The password for login in clear text
<td>XMinusExpiresMinusAfter</td>
<td>Date</td>
<td>date-time</td>
<td>date in UTC when toekn expires</td>
<td>date in UTC when token expires</td>
</tr>
</table>
</div>
@ -8197,7 +8281,8 @@ The password for login in clear text
<div class="tab-pane active" id="examples-User-logoutUser-0-curl">
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
-H "api_key: [[apiKey]]" \
"http://petstore.swagger.io/v2/user/logout"</code></pre>
"http://petstore.swagger.io/v2/user/logout"
</code></pre>
</div>
<div class="tab-pane" id="examples-User-logoutUser-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -8484,7 +8569,18 @@ pub fn main() {
<pre class="prettyprint"><code class="language-bsh">curl -X PUT \
-H "api_key: [[apiKey]]" \
-H "Content-Type: application/json" \
"http://petstore.swagger.io/v2/user/{username}"</code></pre>
"http://petstore.swagger.io/v2/user/{username}" \
-d '{
&quot;firstName&quot; : &quot;firstName&quot;,
&quot;lastName&quot; : &quot;lastName&quot;,
&quot;password&quot; : &quot;password&quot;,
&quot;userStatus&quot; : 6,
&quot;phone&quot; : &quot;phone&quot;,
&quot;id&quot; : 0,
&quot;email&quot; : &quot;email&quot;,
&quot;username&quot; : &quot;username&quot;
}'
</code></pre>
</div>
<div class="tab-pane" id="examples-User-updateUser-0-java">
<pre class="prettyprint"><code class="language-java">import org.openapitools.client.*;
@ -8939,7 +9035,7 @@ return /******/ (function(modules) { // webpackBootstrap
var DATE_STRING_REGEX = /(^\d{1,4}[\.|\\/|-]\d{1,2}[\.|\\/|-]\d{1,4})(\s*(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d\s*[ap]m)?$/;
var PARTIAL_DATE_REGEX = /\d{2}:\d{2}:\d{2} GMT-\d{4}/;
var JSON_DATE_REGEX = /\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/;
// When toggleing, don't animated removal or addition of more than a few items
// When toggling, don't animated removal or addition of more than a few items
var MAX_ANIMATED_TOGGLE_ITEMS = 10;
var requestAnimationFrame = window.requestAnimationFrame || function (cb) { cb(); return 0; };
;
@ -9960,7 +10056,7 @@ var JSONSchemaView = (function () {
this.options = options;
this.isCollapsed = open <= 0;
// if schema is an empty object which means any JOSN
// if schema is an empty object which means any JSON
this.isAny = typeof schema === 'object' && !Array.isArray(schema) && !Object.keys(schema).filter(function (k) {
return ['title', 'description'].indexOf(k) === -1;
}).length;

View File

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

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

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

View File

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

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

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

View File

@ -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;
}

View File

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

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

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

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

@ -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;
}

View File

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

View File

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

View File

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

View File

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

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

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

View File

@ -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;
}

View File

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

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}