generate samples and docs

This commit is contained in:
Tim Selman 2023-06-09 16:24:53 +02:00
parent 67a2ccc67f
commit 9714f12d5d
64 changed files with 273 additions and 273 deletions

View File

@ -113,7 +113,7 @@ Class | Method | HTTP request | Description
*BodyApi* | [**testEchoBodyTagResponseString**](docs/BodyApi.md#testEchoBodyTagResponseString) | **POST** /echo/body/Tag/response_string | Test empty json (request body) *BodyApi* | [**testEchoBodyTagResponseString**](docs/BodyApi.md#testEchoBodyTagResponseString) | **POST** /echo/body/Tag/response_string | Test empty json (request body)
*FormApi* | [**testFormIntegerBooleanString**](docs/FormApi.md#testFormIntegerBooleanString) | **POST** /form/integer/boolean/string | Test form parameter(s) *FormApi* | [**testFormIntegerBooleanString**](docs/FormApi.md#testFormIntegerBooleanString) | **POST** /form/integer/boolean/string | Test form parameter(s)
*HeaderApi* | [**testHeaderIntegerBooleanString**](docs/HeaderApi.md#testHeaderIntegerBooleanString) | **GET** /header/integer/boolean/string | Test header parameter(s) *HeaderApi* | [**testHeaderIntegerBooleanString**](docs/HeaderApi.md#testHeaderIntegerBooleanString) | **GET** /header/integer/boolean/string | Test header parameter(s)
*PathApi* | [**testsPathStringPathStringIntegerPathInteger**](docs/PathApi.md#testsPathStringPathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) *PathApi* | [**testsPathStringpathStringIntegerPathInteger**](docs/PathApi.md#testsPathStringpathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s)
*QueryApi* | [**testEnumRefString**](docs/QueryApi.md#testEnumRefString) | **GET** /query/enum_ref_string | Test query parameter(s) *QueryApi* | [**testEnumRefString**](docs/QueryApi.md#testEnumRefString) | **GET** /query/enum_ref_string | Test query parameter(s)
*QueryApi* | [**testQueryDatetimeDateString**](docs/QueryApi.md#testQueryDatetimeDateString) | **GET** /query/datetime/date/string | Test query parameter(s) *QueryApi* | [**testQueryDatetimeDateString**](docs/QueryApi.md#testQueryDatetimeDateString) | **GET** /query/datetime/date/string | Test query parameter(s)
*QueryApi* | [**testQueryIntegerBooleanString**](docs/QueryApi.md#testQueryIntegerBooleanString) | **GET** /query/integer/boolean/string | Test query parameter(s) *QueryApi* | [**testQueryIntegerBooleanString**](docs/QueryApi.md#testQueryIntegerBooleanString) | **GET** /query/integer/boolean/string | Test query parameter(s)

View File

@ -4,13 +4,13 @@ All URIs are relative to *http://localhost:3000*
| Method | HTTP request | Description | | Method | HTTP request | Description |
|------------- | ------------- | -------------| |------------- | ------------- | -------------|
| [**testsPathStringPathStringIntegerPathInteger**](PathApi.md#testsPathStringPathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) | | [**testsPathStringpathStringIntegerPathInteger**](PathApi.md#testsPathStringpathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) |
## testsPathStringPathStringIntegerPathInteger ## testsPathStringpathStringIntegerPathInteger
> String testsPathStringPathStringIntegerPathInteger(pathString, pathInteger) > String testsPathStringpathStringIntegerPathInteger(pathString, pathInteger)
Test path parameter(s) Test path parameter(s)
@ -35,10 +35,10 @@ public class Example {
String pathString = "pathString_example"; // String | String pathString = "pathString_example"; // String |
Integer pathInteger = 56; // Integer | Integer pathInteger = 56; // Integer |
try { try {
String result = apiInstance.testsPathStringPathStringIntegerPathInteger(pathString, pathInteger); String result = apiInstance.testsPathStringpathStringIntegerPathInteger(pathString, pathInteger);
System.out.println(result); System.out.println(result);
} catch (ApiException e) { } catch (ApiException e) {
System.err.println("Exception when calling PathApi#testsPathStringPathStringIntegerPathInteger"); System.err.println("Exception when calling PathApi#testsPathStringpathStringIntegerPathInteger");
System.err.println("Status code: " + e.getCode()); System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody()); System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders()); System.err.println("Response headers: " + e.getResponseHeaders());

View File

@ -59,8 +59,8 @@ public class PathApi {
* @return String * @return String
* @throws ApiException if fails to make API call * @throws ApiException if fails to make API call
*/ */
public String testsPathStringPathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException { public String testsPathStringpathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
return this.testsPathStringPathStringIntegerPathInteger(pathString, pathInteger, Collections.emptyMap()); return this.testsPathStringpathStringIntegerPathInteger(pathString, pathInteger, Collections.emptyMap());
} }
@ -73,17 +73,17 @@ public class PathApi {
* @return String * @return String
* @throws ApiException if fails to make API call * @throws ApiException if fails to make API call
*/ */
public String testsPathStringPathStringIntegerPathInteger(String pathString, Integer pathInteger, Map<String, String> additionalHeaders) throws ApiException { public String testsPathStringpathStringIntegerPathInteger(String pathString, Integer pathInteger, Map<String, String> additionalHeaders) throws ApiException {
Object localVarPostBody = null; Object localVarPostBody = null;
// verify the required parameter 'pathString' is set // verify the required parameter 'pathString' is set
if (pathString == null) { if (pathString == null) {
throw new ApiException(400, "Missing the required parameter 'pathString' when calling testsPathStringPathStringIntegerPathInteger"); throw new ApiException(400, "Missing the required parameter 'pathString' when calling testsPathStringpathStringIntegerPathInteger");
} }
// verify the required parameter 'pathInteger' is set // verify the required parameter 'pathInteger' is set
if (pathInteger == null) { if (pathInteger == null) {
throw new ApiException(400, "Missing the required parameter 'pathInteger' when calling testsPathStringPathStringIntegerPathInteger"); throw new ApiException(400, "Missing the required parameter 'pathInteger' when calling testsPathStringpathStringIntegerPathInteger");
} }
// create path and map variables // create path and map variables

View File

@ -26,11 +26,11 @@ public interface PathApi extends ApiClient.Api {
@Headers({ @Headers({
"Accept: text/plain", "Accept: text/plain",
}) })
String testsPathStringPathStringIntegerPathInteger(@Param("pathString") String pathString, @Param("pathInteger") Integer pathInteger); String testsPathStringpathStringIntegerPathInteger(@Param("pathString") String pathString, @Param("pathInteger") Integer pathInteger);
/** /**
* Test path parameter(s) * Test path parameter(s)
* Similar to <code>testsPathStringPathStringIntegerPathInteger</code> but it also returns the http response headers . * Similar to <code>testsPathStringpathStringIntegerPathInteger</code> but it also returns the http response headers .
* Test path parameter(s) * Test path parameter(s)
* @param pathString (required) * @param pathString (required)
* @param pathInteger (required) * @param pathInteger (required)
@ -40,7 +40,7 @@ public interface PathApi extends ApiClient.Api {
@Headers({ @Headers({
"Accept: text/plain", "Accept: text/plain",
}) })
ApiResponse<String> testsPathStringPathStringIntegerPathIntegerWithHttpInfo(@Param("pathString") String pathString, @Param("pathInteger") Integer pathInteger); ApiResponse<String> testsPathStringpathStringIntegerPathIntegerWithHttpInfo(@Param("pathString") String pathString, @Param("pathInteger") Integer pathInteger);
} }

View File

@ -120,8 +120,8 @@ Class | Method | HTTP request | Description
*FormApi* | [**testFormIntegerBooleanStringWithHttpInfo**](docs/FormApi.md#testFormIntegerBooleanStringWithHttpInfo) | **POST** /form/integer/boolean/string | Test form parameter(s) *FormApi* | [**testFormIntegerBooleanStringWithHttpInfo**](docs/FormApi.md#testFormIntegerBooleanStringWithHttpInfo) | **POST** /form/integer/boolean/string | Test form parameter(s)
*HeaderApi* | [**testHeaderIntegerBooleanString**](docs/HeaderApi.md#testHeaderIntegerBooleanString) | **GET** /header/integer/boolean/string | Test header parameter(s) *HeaderApi* | [**testHeaderIntegerBooleanString**](docs/HeaderApi.md#testHeaderIntegerBooleanString) | **GET** /header/integer/boolean/string | Test header parameter(s)
*HeaderApi* | [**testHeaderIntegerBooleanStringWithHttpInfo**](docs/HeaderApi.md#testHeaderIntegerBooleanStringWithHttpInfo) | **GET** /header/integer/boolean/string | Test header parameter(s) *HeaderApi* | [**testHeaderIntegerBooleanStringWithHttpInfo**](docs/HeaderApi.md#testHeaderIntegerBooleanStringWithHttpInfo) | **GET** /header/integer/boolean/string | Test header parameter(s)
*PathApi* | [**testsPathStringPathStringIntegerPathInteger**](docs/PathApi.md#testsPathStringPathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) *PathApi* | [**testsPathStringpathStringIntegerPathInteger**](docs/PathApi.md#testsPathStringpathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s)
*PathApi* | [**testsPathStringPathStringIntegerPathIntegerWithHttpInfo**](docs/PathApi.md#testsPathStringPathStringIntegerPathIntegerWithHttpInfo) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) *PathApi* | [**testsPathStringpathStringIntegerPathIntegerWithHttpInfo**](docs/PathApi.md#testsPathStringpathStringIntegerPathIntegerWithHttpInfo) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s)
*QueryApi* | [**testEnumRefString**](docs/QueryApi.md#testEnumRefString) | **GET** /query/enum_ref_string | Test query parameter(s) *QueryApi* | [**testEnumRefString**](docs/QueryApi.md#testEnumRefString) | **GET** /query/enum_ref_string | Test query parameter(s)
*QueryApi* | [**testEnumRefStringWithHttpInfo**](docs/QueryApi.md#testEnumRefStringWithHttpInfo) | **GET** /query/enum_ref_string | Test query parameter(s) *QueryApi* | [**testEnumRefStringWithHttpInfo**](docs/QueryApi.md#testEnumRefStringWithHttpInfo) | **GET** /query/enum_ref_string | Test query parameter(s)
*QueryApi* | [**testQueryDatetimeDateString**](docs/QueryApi.md#testQueryDatetimeDateString) | **GET** /query/datetime/date/string | Test query parameter(s) *QueryApi* | [**testQueryDatetimeDateString**](docs/QueryApi.md#testQueryDatetimeDateString) | **GET** /query/datetime/date/string | Test query parameter(s)

View File

@ -4,14 +4,14 @@ All URIs are relative to *http://localhost:3000*
| Method | HTTP request | Description | | Method | HTTP request | Description |
|------------- | ------------- | -------------| |------------- | ------------- | -------------|
| [**testsPathStringPathStringIntegerPathInteger**](PathApi.md#testsPathStringPathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) | | [**testsPathStringpathStringIntegerPathInteger**](PathApi.md#testsPathStringpathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) |
| [**testsPathStringPathStringIntegerPathIntegerWithHttpInfo**](PathApi.md#testsPathStringPathStringIntegerPathIntegerWithHttpInfo) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) | | [**testsPathStringpathStringIntegerPathIntegerWithHttpInfo**](PathApi.md#testsPathStringpathStringIntegerPathIntegerWithHttpInfo) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) |
## testsPathStringPathStringIntegerPathInteger ## testsPathStringpathStringIntegerPathInteger
> String testsPathStringPathStringIntegerPathInteger(pathString, pathInteger) > String testsPathStringpathStringIntegerPathInteger(pathString, pathInteger)
Test path parameter(s) Test path parameter(s)
@ -36,10 +36,10 @@ public class Example {
String pathString = "pathString_example"; // String | String pathString = "pathString_example"; // String |
Integer pathInteger = 56; // Integer | Integer pathInteger = 56; // Integer |
try { try {
String result = apiInstance.testsPathStringPathStringIntegerPathInteger(pathString, pathInteger); String result = apiInstance.testsPathStringpathStringIntegerPathInteger(pathString, pathInteger);
System.out.println(result); System.out.println(result);
} catch (ApiException e) { } catch (ApiException e) {
System.err.println("Exception when calling PathApi#testsPathStringPathStringIntegerPathInteger"); System.err.println("Exception when calling PathApi#testsPathStringpathStringIntegerPathInteger");
System.err.println("Status code: " + e.getCode()); System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody()); System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders()); System.err.println("Response headers: " + e.getResponseHeaders());
@ -76,9 +76,9 @@ No authorization required
|-------------|-------------|------------------| |-------------|-------------|------------------|
| **200** | Successful operation | - | | **200** | Successful operation | - |
## testsPathStringPathStringIntegerPathIntegerWithHttpInfo ## testsPathStringpathStringIntegerPathIntegerWithHttpInfo
> ApiResponse<String> testsPathStringPathStringIntegerPathInteger testsPathStringPathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger) > ApiResponse<String> testsPathStringpathStringIntegerPathInteger testsPathStringpathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger)
Test path parameter(s) Test path parameter(s)
@ -104,12 +104,12 @@ public class Example {
String pathString = "pathString_example"; // String | String pathString = "pathString_example"; // String |
Integer pathInteger = 56; // Integer | Integer pathInteger = 56; // Integer |
try { try {
ApiResponse<String> response = apiInstance.testsPathStringPathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger); ApiResponse<String> response = apiInstance.testsPathStringpathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger);
System.out.println("Status code: " + response.getStatusCode()); System.out.println("Status code: " + response.getStatusCode());
System.out.println("Response headers: " + response.getHeaders()); System.out.println("Response headers: " + response.getHeaders());
System.out.println("Response body: " + response.getData()); System.out.println("Response body: " + response.getData());
} catch (ApiException e) { } catch (ApiException e) {
System.err.println("Exception when calling PathApi#testsPathStringPathStringIntegerPathInteger"); System.err.println("Exception when calling PathApi#testsPathStringpathStringIntegerPathInteger");
System.err.println("Status code: " + e.getCode()); System.err.println("Status code: " + e.getCode());
System.err.println("Response headers: " + e.getResponseHeaders()); System.err.println("Response headers: " + e.getResponseHeaders());
System.err.println("Reason: " + e.getResponseBody()); System.err.println("Reason: " + e.getResponseBody());

View File

@ -94,8 +94,8 @@ public class PathApi {
* @return String * @return String
* @throws ApiException if fails to make API call * @throws ApiException if fails to make API call
*/ */
public String testsPathStringPathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException { public String testsPathStringpathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
ApiResponse<String> localVarResponse = testsPathStringPathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger); ApiResponse<String> localVarResponse = testsPathStringpathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger);
return localVarResponse.getData(); return localVarResponse.getData();
} }
@ -107,8 +107,8 @@ public class PathApi {
* @return ApiResponse&lt;String&gt; * @return ApiResponse&lt;String&gt;
* @throws ApiException if fails to make API call * @throws ApiException if fails to make API call
*/ */
public ApiResponse<String> testsPathStringPathStringIntegerPathIntegerWithHttpInfo(String pathString, Integer pathInteger) throws ApiException { public ApiResponse<String> testsPathStringpathStringIntegerPathIntegerWithHttpInfo(String pathString, Integer pathInteger) throws ApiException {
HttpRequest.Builder localVarRequestBuilder = testsPathStringPathStringIntegerPathIntegerRequestBuilder(pathString, pathInteger); HttpRequest.Builder localVarRequestBuilder = testsPathStringpathStringIntegerPathIntegerRequestBuilder(pathString, pathInteger);
try { try {
HttpResponse<InputStream> localVarResponse = memberVarHttpClient.send( HttpResponse<InputStream> localVarResponse = memberVarHttpClient.send(
localVarRequestBuilder.build(), localVarRequestBuilder.build(),
@ -118,7 +118,7 @@ public class PathApi {
} }
try { try {
if (localVarResponse.statusCode()/ 100 != 2) { if (localVarResponse.statusCode()/ 100 != 2) {
throw getApiException("testsPathStringPathStringIntegerPathInteger", localVarResponse); throw getApiException("testsPathStringpathStringIntegerPathInteger", localVarResponse);
} }
// for plain text response // for plain text response
if (localVarResponse.headers().map().containsKey("Content-Type") && if (localVarResponse.headers().map().containsKey("Content-Type") &&
@ -144,14 +144,14 @@ public class PathApi {
} }
} }
private HttpRequest.Builder testsPathStringPathStringIntegerPathIntegerRequestBuilder(String pathString, Integer pathInteger) throws ApiException { private HttpRequest.Builder testsPathStringpathStringIntegerPathIntegerRequestBuilder(String pathString, Integer pathInteger) throws ApiException {
// verify the required parameter 'pathString' is set // verify the required parameter 'pathString' is set
if (pathString == null) { if (pathString == null) {
throw new ApiException(400, "Missing the required parameter 'pathString' when calling testsPathStringPathStringIntegerPathInteger"); throw new ApiException(400, "Missing the required parameter 'pathString' when calling testsPathStringpathStringIntegerPathInteger");
} }
// verify the required parameter 'pathInteger' is set // verify the required parameter 'pathInteger' is set
if (pathInteger == null) { if (pathInteger == null) {
throw new ApiException(400, "Missing the required parameter 'pathInteger' when calling testsPathStringPathStringIntegerPathInteger"); throw new ApiException(400, "Missing the required parameter 'pathInteger' when calling testsPathStringpathStringIntegerPathInteger");
} }
HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder(); HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();

View File

@ -120,7 +120,7 @@ Class | Method | HTTP request | Description
*BodyApi* | [**testEchoBodyTagResponseString**](docs/BodyApi.md#testEchoBodyTagResponseString) | **POST** /echo/body/Tag/response_string | Test empty json (request body) *BodyApi* | [**testEchoBodyTagResponseString**](docs/BodyApi.md#testEchoBodyTagResponseString) | **POST** /echo/body/Tag/response_string | Test empty json (request body)
*FormApi* | [**testFormIntegerBooleanString**](docs/FormApi.md#testFormIntegerBooleanString) | **POST** /form/integer/boolean/string | Test form parameter(s) *FormApi* | [**testFormIntegerBooleanString**](docs/FormApi.md#testFormIntegerBooleanString) | **POST** /form/integer/boolean/string | Test form parameter(s)
*HeaderApi* | [**testHeaderIntegerBooleanString**](docs/HeaderApi.md#testHeaderIntegerBooleanString) | **GET** /header/integer/boolean/string | Test header parameter(s) *HeaderApi* | [**testHeaderIntegerBooleanString**](docs/HeaderApi.md#testHeaderIntegerBooleanString) | **GET** /header/integer/boolean/string | Test header parameter(s)
*PathApi* | [**testsPathStringPathStringIntegerPathInteger**](docs/PathApi.md#testsPathStringPathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) *PathApi* | [**testsPathStringpathStringIntegerPathInteger**](docs/PathApi.md#testsPathStringpathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s)
*QueryApi* | [**testEnumRefString**](docs/QueryApi.md#testEnumRefString) | **GET** /query/enum_ref_string | Test query parameter(s) *QueryApi* | [**testEnumRefString**](docs/QueryApi.md#testEnumRefString) | **GET** /query/enum_ref_string | Test query parameter(s)
*QueryApi* | [**testQueryDatetimeDateString**](docs/QueryApi.md#testQueryDatetimeDateString) | **GET** /query/datetime/date/string | Test query parameter(s) *QueryApi* | [**testQueryDatetimeDateString**](docs/QueryApi.md#testQueryDatetimeDateString) | **GET** /query/datetime/date/string | Test query parameter(s)
*QueryApi* | [**testQueryIntegerBooleanString**](docs/QueryApi.md#testQueryIntegerBooleanString) | **GET** /query/integer/boolean/string | Test query parameter(s) *QueryApi* | [**testQueryIntegerBooleanString**](docs/QueryApi.md#testQueryIntegerBooleanString) | **GET** /query/integer/boolean/string | Test query parameter(s)

View File

@ -4,12 +4,12 @@ All URIs are relative to *http://localhost:3000*
| Method | HTTP request | Description | | Method | HTTP request | Description |
|------------- | ------------- | -------------| |------------- | ------------- | -------------|
| [**testsPathStringPathStringIntegerPathInteger**](PathApi.md#testsPathStringPathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) | | [**testsPathStringpathStringIntegerPathInteger**](PathApi.md#testsPathStringpathStringIntegerPathInteger) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) |
<a id="testsPathStringPathStringIntegerPathInteger"></a> <a id="testsPathStringpathStringIntegerPathInteger"></a>
# **testsPathStringPathStringIntegerPathInteger** # **testsPathStringpathStringIntegerPathInteger**
> String testsPathStringPathStringIntegerPathInteger(pathString, pathInteger) > String testsPathStringpathStringIntegerPathInteger(pathString, pathInteger)
Test path parameter(s) Test path parameter(s)
@ -33,10 +33,10 @@ public class Example {
String pathString = "pathString_example"; // String | String pathString = "pathString_example"; // String |
Integer pathInteger = 56; // Integer | Integer pathInteger = 56; // Integer |
try { try {
String result = apiInstance.testsPathStringPathStringIntegerPathInteger(pathString, pathInteger); String result = apiInstance.testsPathStringpathStringIntegerPathInteger(pathString, pathInteger);
System.out.println(result); System.out.println(result);
} catch (ApiException e) { } catch (ApiException e) {
System.err.println("Exception when calling PathApi#testsPathStringPathStringIntegerPathInteger"); System.err.println("Exception when calling PathApi#testsPathStringpathStringIntegerPathInteger");
System.err.println("Status code: " + e.getCode()); System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody()); System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders()); System.err.println("Response headers: " + e.getResponseHeaders());

View File

@ -73,7 +73,7 @@ public class PathApi {
} }
/** /**
* Build call for testsPathStringPathStringIntegerPathInteger * Build call for testsPathStringpathStringIntegerPathInteger
* @param pathString (required) * @param pathString (required)
* @param pathInteger (required) * @param pathInteger (required)
* @param _callback Callback for upload/download progress * @param _callback Callback for upload/download progress
@ -85,7 +85,7 @@ public class PathApi {
<tr><td> 200 </td><td> Successful operation </td><td> - </td></tr> <tr><td> 200 </td><td> Successful operation </td><td> - </td></tr>
</table> </table>
*/ */
public okhttp3.Call testsPathStringPathStringIntegerPathIntegerCall(String pathString, Integer pathInteger, final ApiCallback _callback) throws ApiException { public okhttp3.Call testsPathStringpathStringIntegerPathIntegerCall(String pathString, Integer pathInteger, final ApiCallback _callback) throws ApiException {
String basePath = null; String basePath = null;
// Operation Servers // Operation Servers
String[] localBasePaths = new String[] { }; String[] localBasePaths = new String[] { };
@ -132,18 +132,18 @@ public class PathApi {
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
private okhttp3.Call testsPathStringPathStringIntegerPathIntegerValidateBeforeCall(String pathString, Integer pathInteger, final ApiCallback _callback) throws ApiException { private okhttp3.Call testsPathStringpathStringIntegerPathIntegerValidateBeforeCall(String pathString, Integer pathInteger, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'pathString' is set // verify the required parameter 'pathString' is set
if (pathString == null) { if (pathString == null) {
throw new ApiException("Missing the required parameter 'pathString' when calling testsPathStringPathStringIntegerPathInteger(Async)"); throw new ApiException("Missing the required parameter 'pathString' when calling testsPathStringpathStringIntegerPathInteger(Async)");
} }
// verify the required parameter 'pathInteger' is set // verify the required parameter 'pathInteger' is set
if (pathInteger == null) { if (pathInteger == null) {
throw new ApiException("Missing the required parameter 'pathInteger' when calling testsPathStringPathStringIntegerPathInteger(Async)"); throw new ApiException("Missing the required parameter 'pathInteger' when calling testsPathStringpathStringIntegerPathInteger(Async)");
} }
return testsPathStringPathStringIntegerPathIntegerCall(pathString, pathInteger, _callback); return testsPathStringpathStringIntegerPathIntegerCall(pathString, pathInteger, _callback);
} }
@ -160,8 +160,8 @@ public class PathApi {
<tr><td> 200 </td><td> Successful operation </td><td> - </td></tr> <tr><td> 200 </td><td> Successful operation </td><td> - </td></tr>
</table> </table>
*/ */
public String testsPathStringPathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException { public String testsPathStringpathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
ApiResponse<String> localVarResp = testsPathStringPathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger); ApiResponse<String> localVarResp = testsPathStringpathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger);
return localVarResp.getData(); return localVarResp.getData();
} }
@ -178,8 +178,8 @@ public class PathApi {
<tr><td> 200 </td><td> Successful operation </td><td> - </td></tr> <tr><td> 200 </td><td> Successful operation </td><td> - </td></tr>
</table> </table>
*/ */
public ApiResponse<String> testsPathStringPathStringIntegerPathIntegerWithHttpInfo(String pathString, Integer pathInteger) throws ApiException { public ApiResponse<String> testsPathStringpathStringIntegerPathIntegerWithHttpInfo(String pathString, Integer pathInteger) throws ApiException {
okhttp3.Call localVarCall = testsPathStringPathStringIntegerPathIntegerValidateBeforeCall(pathString, pathInteger, null); okhttp3.Call localVarCall = testsPathStringpathStringIntegerPathIntegerValidateBeforeCall(pathString, pathInteger, null);
Type localVarReturnType = new TypeToken<String>(){}.getType(); Type localVarReturnType = new TypeToken<String>(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType); return localVarApiClient.execute(localVarCall, localVarReturnType);
} }
@ -198,9 +198,9 @@ public class PathApi {
<tr><td> 200 </td><td> Successful operation </td><td> - </td></tr> <tr><td> 200 </td><td> Successful operation </td><td> - </td></tr>
</table> </table>
*/ */
public okhttp3.Call testsPathStringPathStringIntegerPathIntegerAsync(String pathString, Integer pathInteger, final ApiCallback<String> _callback) throws ApiException { public okhttp3.Call testsPathStringpathStringIntegerPathIntegerAsync(String pathString, Integer pathInteger, final ApiCallback<String> _callback) throws ApiException {
okhttp3.Call localVarCall = testsPathStringPathStringIntegerPathIntegerValidateBeforeCall(pathString, pathInteger, _callback); okhttp3.Call localVarCall = testsPathStringpathStringIntegerPathIntegerValidateBeforeCall(pathString, pathInteger, _callback);
Type localVarReturnType = new TypeToken<String>(){}.getType(); Type localVarReturnType = new TypeToken<String>(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall; return localVarCall;

View File

@ -92,7 +92,7 @@ Class | Method | HTTP request | Description
*BodyApi* | [**test_echo_body_tag_response_string**](docs/BodyApi.md#test_echo_body_tag_response_string) | **POST** /echo/body/Tag/response_string | Test empty json (request body) *BodyApi* | [**test_echo_body_tag_response_string**](docs/BodyApi.md#test_echo_body_tag_response_string) | **POST** /echo/body/Tag/response_string | Test empty json (request body)
*FormApi* | [**test_form_integer_boolean_string**](docs/FormApi.md#test_form_integer_boolean_string) | **POST** /form/integer/boolean/string | Test form parameter(s) *FormApi* | [**test_form_integer_boolean_string**](docs/FormApi.md#test_form_integer_boolean_string) | **POST** /form/integer/boolean/string | Test form parameter(s)
*HeaderApi* | [**test_header_integer_boolean_string**](docs/HeaderApi.md#test_header_integer_boolean_string) | **GET** /header/integer/boolean/string | Test header parameter(s) *HeaderApi* | [**test_header_integer_boolean_string**](docs/HeaderApi.md#test_header_integer_boolean_string) | **GET** /header/integer/boolean/string | Test header parameter(s)
*PathApi* | [**tests_path_string_path_string_integer_path_integer**](docs/PathApi.md#tests_path_string_path_string_integer_path_integer) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) *PathApi* | [**tests_path_stringpath_string_integer_path_integer**](docs/PathApi.md#tests_path_stringpath_string_integer_path_integer) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s)
*QueryApi* | [**test_enum_ref_string**](docs/QueryApi.md#test_enum_ref_string) | **GET** /query/enum_ref_string | Test query parameter(s) *QueryApi* | [**test_enum_ref_string**](docs/QueryApi.md#test_enum_ref_string) | **GET** /query/enum_ref_string | Test query parameter(s)
*QueryApi* | [**test_query_datetime_date_string**](docs/QueryApi.md#test_query_datetime_date_string) | **GET** /query/datetime/date/string | Test query parameter(s) *QueryApi* | [**test_query_datetime_date_string**](docs/QueryApi.md#test_query_datetime_date_string) | **GET** /query/datetime/date/string | Test query parameter(s)
*QueryApi* | [**test_query_integer_boolean_string**](docs/QueryApi.md#test_query_integer_boolean_string) | **GET** /query/integer/boolean/string | Test query parameter(s) *QueryApi* | [**test_query_integer_boolean_string**](docs/QueryApi.md#test_query_integer_boolean_string) | **GET** /query/integer/boolean/string | Test query parameter(s)

View File

@ -4,11 +4,11 @@ All URIs are relative to *http://localhost:3000*
Method | HTTP request | Description Method | HTTP request | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**tests_path_string_path_string_integer_path_integer**](PathApi.md#tests_path_string_path_string_integer_path_integer) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s) [**tests_path_stringpath_string_integer_path_integer**](PathApi.md#tests_path_stringpath_string_integer_path_integer) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s)
# **tests_path_string_path_string_integer_path_integer** # **tests_path_stringpath_string_integer_path_integer**
> str tests_path_string_path_string_integer_path_integer(path_string, path_integer) > str tests_path_stringpath_string_integer_path_integer(path_string, path_integer)
Test path parameter(s) Test path parameter(s)
@ -39,11 +39,11 @@ with openapi_client.ApiClient(configuration) as api_client:
try: try:
# Test path parameter(s) # Test path parameter(s)
api_response = api_instance.tests_path_string_path_string_integer_path_integer(path_string, path_integer) api_response = api_instance.tests_path_stringpath_string_integer_path_integer(path_string, path_integer)
print("The response of PathApi->tests_path_string_path_string_integer_path_integer:\n") print("The response of PathApi->tests_path_stringpath_string_integer_path_integer:\n")
pprint(api_response) pprint(api_response)
except Exception as e: except Exception as e:
print("Exception when calling PathApi->tests_path_string_path_string_integer_path_integer: %s\n" % e) print("Exception when calling PathApi->tests_path_stringpath_string_integer_path_integer: %s\n" % e)
``` ```

View File

@ -44,14 +44,14 @@ class PathApi(object):
self.api_client = api_client self.api_client = api_client
@validate_arguments @validate_arguments
def tests_path_string_path_string_integer_path_integer(self, path_string : StrictStr, path_integer : StrictInt, **kwargs) -> str: # noqa: E501 def tests_path_stringpath_string_integer_path_integer(self, path_string : StrictStr, path_integer : StrictInt, **kwargs) -> str: # noqa: E501
"""Test path parameter(s) # noqa: E501 """Test path parameter(s) # noqa: E501
Test path parameter(s) # noqa: E501 Test path parameter(s) # noqa: E501
This method makes a synchronous HTTP request by default. To make an This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True asynchronous HTTP request, please pass async_req=True
>>> thread = api.tests_path_string_path_string_integer_path_integer(path_string, path_integer, async_req=True) >>> thread = api.tests_path_stringpath_string_integer_path_integer(path_string, path_integer, async_req=True)
>>> result = thread.get() >>> result = thread.get()
:param path_string: (required) :param path_string: (required)
@ -71,18 +71,18 @@ class PathApi(object):
""" """
kwargs['_return_http_data_only'] = True kwargs['_return_http_data_only'] = True
if '_preload_content' in kwargs: if '_preload_content' in kwargs:
raise ValueError("Error! Please call the tests_path_string_path_string_integer_path_integer_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data") raise ValueError("Error! Please call the tests_path_stringpath_string_integer_path_integer_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data")
return self.tests_path_string_path_string_integer_path_integer_with_http_info(path_string, path_integer, **kwargs) # noqa: E501 return self.tests_path_stringpath_string_integer_path_integer_with_http_info(path_string, path_integer, **kwargs) # noqa: E501
@validate_arguments @validate_arguments
def tests_path_string_path_string_integer_path_integer_with_http_info(self, path_string : StrictStr, path_integer : StrictInt, **kwargs) -> ApiResponse: # noqa: E501 def tests_path_stringpath_string_integer_path_integer_with_http_info(self, path_string : StrictStr, path_integer : StrictInt, **kwargs) -> ApiResponse: # noqa: E501
"""Test path parameter(s) # noqa: E501 """Test path parameter(s) # noqa: E501
Test path parameter(s) # noqa: E501 Test path parameter(s) # noqa: E501
This method makes a synchronous HTTP request by default. To make an This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True asynchronous HTTP request, please pass async_req=True
>>> thread = api.tests_path_string_path_string_integer_path_integer_with_http_info(path_string, path_integer, async_req=True) >>> thread = api.tests_path_stringpath_string_integer_path_integer_with_http_info(path_string, path_integer, async_req=True)
>>> result = thread.get() >>> result = thread.get()
:param path_string: (required) :param path_string: (required)
@ -137,7 +137,7 @@ class PathApi(object):
if _key not in _all_params: if _key not in _all_params:
raise ApiTypeError( raise ApiTypeError(
"Got an unexpected keyword argument '%s'" "Got an unexpected keyword argument '%s'"
" to method tests_path_string_path_string_integer_path_integer" % _key " to method tests_path_stringpath_string_integer_path_integer" % _key
) )
_params[_key] = _val _params[_key] = _val
del _params['kwargs'] del _params['kwargs']

View File

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

View File

@ -33,19 +33,19 @@ namespace Org.OpenAPITools.Model
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="Capitalization" /> class. /// Initializes a new instance of the <see cref="Capitalization" /> class.
/// </summary> /// </summary>
/// <param name="aTTNAME">Name of the pet </param> /// <param name="attNAME">Name of the pet </param>
/// <param name="capitalCamel">capitalCamel</param> /// <param name="capitalCamel">capitalCamel</param>
/// <param name="capitalSnake">capitalSnake</param> /// <param name="capitalSnake">capitalSnake</param>
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param> /// <param name="scaethFlowPoints">scaethFlowPoints</param>
/// <param name="smallCamel">smallCamel</param> /// <param name="smallCamel">smallCamel</param>
/// <param name="smallSnake">smallSnake</param> /// <param name="smallSnake">smallSnake</param>
[JsonConstructor] [JsonConstructor]
public Capitalization(string aTTNAME, string capitalCamel, string capitalSnake, string sCAETHFlowPoints, string smallCamel, string smallSnake) public Capitalization(string attNAME, string capitalCamel, string capitalSnake, string scaethFlowPoints, string smallCamel, string smallSnake)
{ {
ATT_NAME = aTTNAME; ATT_NAME = attNAME;
CapitalCamel = capitalCamel; CapitalCamel = capitalCamel;
CapitalSnake = capitalSnake; CapitalSnake = capitalSnake;
SCAETHFlowPoints = sCAETHFlowPoints; SCAETHFlowPoints = scaethFlowPoints;
SmallCamel = smallCamel; SmallCamel = smallCamel;
SmallSnake = smallSnake; SmallSnake = smallSnake;
OnCreated(); OnCreated();
@ -148,10 +148,10 @@ namespace Org.OpenAPITools.Model
JsonTokenType startingTokenType = utf8JsonReader.TokenType; JsonTokenType startingTokenType = utf8JsonReader.TokenType;
string? aTTNAME = default; string? attNAME = default;
string? capitalCamel = default; string? capitalCamel = default;
string? capitalSnake = default; string? capitalSnake = default;
string? sCAETHFlowPoints = default; string? scaethFlowPoints = default;
string? smallCamel = default; string? smallCamel = default;
string? smallSnake = default; string? smallSnake = default;
@ -171,7 +171,7 @@ namespace Org.OpenAPITools.Model
switch (propertyName) switch (propertyName)
{ {
case "ATT_NAME": case "ATT_NAME":
aTTNAME = utf8JsonReader.GetString(); attNAME = utf8JsonReader.GetString();
break; break;
case "CapitalCamel": case "CapitalCamel":
capitalCamel = utf8JsonReader.GetString(); capitalCamel = utf8JsonReader.GetString();
@ -180,7 +180,7 @@ namespace Org.OpenAPITools.Model
capitalSnake = utf8JsonReader.GetString(); capitalSnake = utf8JsonReader.GetString();
break; break;
case "SCA_ETH_Flow_Points": case "SCA_ETH_Flow_Points":
sCAETHFlowPoints = utf8JsonReader.GetString(); scaethFlowPoints = utf8JsonReader.GetString();
break; break;
case "smallCamel": case "smallCamel":
smallCamel = utf8JsonReader.GetString(); smallCamel = utf8JsonReader.GetString();
@ -194,8 +194,8 @@ namespace Org.OpenAPITools.Model
} }
} }
if (aTTNAME == null) if (attNAME == null)
throw new ArgumentNullException(nameof(aTTNAME), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(attNAME), "Property is required for class Capitalization.");
if (capitalCamel == null) if (capitalCamel == null)
throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization.");
@ -203,8 +203,8 @@ namespace Org.OpenAPITools.Model
if (capitalSnake == null) if (capitalSnake == null)
throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization.");
if (sCAETHFlowPoints == null) if (scaethFlowPoints == null)
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is required for class Capitalization.");
if (smallCamel == null) if (smallCamel == null)
throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization.");
@ -212,7 +212,7 @@ namespace Org.OpenAPITools.Model
if (smallSnake == null) if (smallSnake == null)
throw new ArgumentNullException(nameof(smallSnake), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(smallSnake), "Property is required for class Capitalization.");
return new Capitalization(aTTNAME, capitalCamel, capitalSnake, sCAETHFlowPoints, smallCamel, smallSnake); return new Capitalization(attNAME, capitalCamel, capitalSnake, scaethFlowPoints, smallCamel, smallSnake);
} }
/// <summary> /// <summary>

View File

@ -31,19 +31,19 @@ namespace Org.OpenAPITools.Model
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="Capitalization" /> class. /// Initializes a new instance of the <see cref="Capitalization" /> class.
/// </summary> /// </summary>
/// <param name="aTTNAME">Name of the pet </param> /// <param name="attNAME">Name of the pet </param>
/// <param name="capitalCamel">capitalCamel</param> /// <param name="capitalCamel">capitalCamel</param>
/// <param name="capitalSnake">capitalSnake</param> /// <param name="capitalSnake">capitalSnake</param>
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param> /// <param name="scaethFlowPoints">scaethFlowPoints</param>
/// <param name="smallCamel">smallCamel</param> /// <param name="smallCamel">smallCamel</param>
/// <param name="smallSnake">smallSnake</param> /// <param name="smallSnake">smallSnake</param>
[JsonConstructor] [JsonConstructor]
public Capitalization(string aTTNAME, string capitalCamel, string capitalSnake, string sCAETHFlowPoints, string smallCamel, string smallSnake) public Capitalization(string attNAME, string capitalCamel, string capitalSnake, string scaethFlowPoints, string smallCamel, string smallSnake)
{ {
ATT_NAME = aTTNAME; ATT_NAME = attNAME;
CapitalCamel = capitalCamel; CapitalCamel = capitalCamel;
CapitalSnake = capitalSnake; CapitalSnake = capitalSnake;
SCAETHFlowPoints = sCAETHFlowPoints; SCAETHFlowPoints = scaethFlowPoints;
SmallCamel = smallCamel; SmallCamel = smallCamel;
SmallSnake = smallSnake; SmallSnake = smallSnake;
OnCreated(); OnCreated();
@ -146,10 +146,10 @@ namespace Org.OpenAPITools.Model
JsonTokenType startingTokenType = utf8JsonReader.TokenType; JsonTokenType startingTokenType = utf8JsonReader.TokenType;
string aTTNAME = default; string attNAME = default;
string capitalCamel = default; string capitalCamel = default;
string capitalSnake = default; string capitalSnake = default;
string sCAETHFlowPoints = default; string scaethFlowPoints = default;
string smallCamel = default; string smallCamel = default;
string smallSnake = default; string smallSnake = default;
@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Model
switch (propertyName) switch (propertyName)
{ {
case "ATT_NAME": case "ATT_NAME":
aTTNAME = utf8JsonReader.GetString(); attNAME = utf8JsonReader.GetString();
break; break;
case "CapitalCamel": case "CapitalCamel":
capitalCamel = utf8JsonReader.GetString(); capitalCamel = utf8JsonReader.GetString();
@ -178,7 +178,7 @@ namespace Org.OpenAPITools.Model
capitalSnake = utf8JsonReader.GetString(); capitalSnake = utf8JsonReader.GetString();
break; break;
case "SCA_ETH_Flow_Points": case "SCA_ETH_Flow_Points":
sCAETHFlowPoints = utf8JsonReader.GetString(); scaethFlowPoints = utf8JsonReader.GetString();
break; break;
case "smallCamel": case "smallCamel":
smallCamel = utf8JsonReader.GetString(); smallCamel = utf8JsonReader.GetString();
@ -192,8 +192,8 @@ namespace Org.OpenAPITools.Model
} }
} }
if (aTTNAME == null) if (attNAME == null)
throw new ArgumentNullException(nameof(aTTNAME), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(attNAME), "Property is required for class Capitalization.");
if (capitalCamel == null) if (capitalCamel == null)
throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization.");
@ -201,8 +201,8 @@ namespace Org.OpenAPITools.Model
if (capitalSnake == null) if (capitalSnake == null)
throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization.");
if (sCAETHFlowPoints == null) if (scaethFlowPoints == null)
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is required for class Capitalization.");
if (smallCamel == null) if (smallCamel == null)
throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization.");
@ -210,7 +210,7 @@ namespace Org.OpenAPITools.Model
if (smallSnake == null) if (smallSnake == null)
throw new ArgumentNullException(nameof(smallSnake), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(smallSnake), "Property is required for class Capitalization.");
return new Capitalization(aTTNAME, capitalCamel, capitalSnake, sCAETHFlowPoints, smallCamel, smallSnake); return new Capitalization(attNAME, capitalCamel, capitalSnake, scaethFlowPoints, smallCamel, smallSnake);
} }
/// <summary> /// <summary>

View File

@ -31,19 +31,19 @@ namespace Org.OpenAPITools.Model
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="Capitalization" /> class. /// Initializes a new instance of the <see cref="Capitalization" /> class.
/// </summary> /// </summary>
/// <param name="aTTNAME">Name of the pet </param> /// <param name="attNAME">Name of the pet </param>
/// <param name="capitalCamel">capitalCamel</param> /// <param name="capitalCamel">capitalCamel</param>
/// <param name="capitalSnake">capitalSnake</param> /// <param name="capitalSnake">capitalSnake</param>
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param> /// <param name="scaethFlowPoints">scaethFlowPoints</param>
/// <param name="smallCamel">smallCamel</param> /// <param name="smallCamel">smallCamel</param>
/// <param name="smallSnake">smallSnake</param> /// <param name="smallSnake">smallSnake</param>
[JsonConstructor] [JsonConstructor]
public Capitalization(string aTTNAME, string capitalCamel, string capitalSnake, string sCAETHFlowPoints, string smallCamel, string smallSnake) public Capitalization(string attNAME, string capitalCamel, string capitalSnake, string scaethFlowPoints, string smallCamel, string smallSnake)
{ {
ATT_NAME = aTTNAME; ATT_NAME = attNAME;
CapitalCamel = capitalCamel; CapitalCamel = capitalCamel;
CapitalSnake = capitalSnake; CapitalSnake = capitalSnake;
SCAETHFlowPoints = sCAETHFlowPoints; SCAETHFlowPoints = scaethFlowPoints;
SmallCamel = smallCamel; SmallCamel = smallCamel;
SmallSnake = smallSnake; SmallSnake = smallSnake;
OnCreated(); OnCreated();
@ -146,10 +146,10 @@ namespace Org.OpenAPITools.Model
JsonTokenType startingTokenType = utf8JsonReader.TokenType; JsonTokenType startingTokenType = utf8JsonReader.TokenType;
string aTTNAME = default; string attNAME = default;
string capitalCamel = default; string capitalCamel = default;
string capitalSnake = default; string capitalSnake = default;
string sCAETHFlowPoints = default; string scaethFlowPoints = default;
string smallCamel = default; string smallCamel = default;
string smallSnake = default; string smallSnake = default;
@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Model
switch (propertyName) switch (propertyName)
{ {
case "ATT_NAME": case "ATT_NAME":
aTTNAME = utf8JsonReader.GetString(); attNAME = utf8JsonReader.GetString();
break; break;
case "CapitalCamel": case "CapitalCamel":
capitalCamel = utf8JsonReader.GetString(); capitalCamel = utf8JsonReader.GetString();
@ -178,7 +178,7 @@ namespace Org.OpenAPITools.Model
capitalSnake = utf8JsonReader.GetString(); capitalSnake = utf8JsonReader.GetString();
break; break;
case "SCA_ETH_Flow_Points": case "SCA_ETH_Flow_Points":
sCAETHFlowPoints = utf8JsonReader.GetString(); scaethFlowPoints = utf8JsonReader.GetString();
break; break;
case "smallCamel": case "smallCamel":
smallCamel = utf8JsonReader.GetString(); smallCamel = utf8JsonReader.GetString();
@ -192,8 +192,8 @@ namespace Org.OpenAPITools.Model
} }
} }
if (aTTNAME == null) if (attNAME == null)
throw new ArgumentNullException(nameof(aTTNAME), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(attNAME), "Property is required for class Capitalization.");
if (capitalCamel == null) if (capitalCamel == null)
throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization.");
@ -201,8 +201,8 @@ namespace Org.OpenAPITools.Model
if (capitalSnake == null) if (capitalSnake == null)
throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization.");
if (sCAETHFlowPoints == null) if (scaethFlowPoints == null)
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is required for class Capitalization.");
if (smallCamel == null) if (smallCamel == null)
throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization.");
@ -210,7 +210,7 @@ namespace Org.OpenAPITools.Model
if (smallSnake == null) if (smallSnake == null)
throw new ArgumentNullException(nameof(smallSnake), "Property is required for class Capitalization."); throw new ArgumentNullException(nameof(smallSnake), "Property is required for class Capitalization.");
return new Capitalization(aTTNAME, capitalCamel, capitalSnake, sCAETHFlowPoints, smallCamel, smallSnake); return new Capitalization(attNAME, capitalCamel, capitalSnake, scaethFlowPoints, smallCamel, smallSnake);
} }
/// <summary> /// <summary>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -30,7 +30,7 @@ import java.io.Serializable
data class ModelWithEnumPropertyHavingDefault ( data class ModelWithEnumPropertyHavingDefault (
@Json(name = "propertyName") @Json(name = "propertyName")
val propertyName: ModelWithEnumPropertyHavingDefault.PropertyName = PropertyName.vALUE val propertyName: ModelWithEnumPropertyHavingDefault.PropertyName = PropertyName.`value`
) : Serializable { ) : Serializable {
companion object { companion object {
@ -40,11 +40,11 @@ data class ModelWithEnumPropertyHavingDefault (
/** /**
* *
* *
* Values: vALUE,unknownDefaultOpenApi * Values: `value`,unknownDefaultOpenApi
*/ */
@JsonClass(generateAdapter = false) @JsonClass(generateAdapter = false)
enum class PropertyName(val value: kotlin.String) { enum class PropertyName(val value: kotlin.String) {
@Json(name = "VALUE") vALUE("VALUE"), @Json(name = "VALUE") `value`("VALUE"),
@Json(name = "unknown_default_open_api") unknownDefaultOpenApi("unknown_default_open_api"); @Json(name = "unknown_default_open_api") unknownDefaultOpenApi("unknown_default_open_api");
} }
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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