forked from loafle/openapi-generator-original
generate samples and docs
This commit is contained in:
parent
67a2ccc67f
commit
9714f12d5d
@ -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)
|
||||
*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)
|
||||
*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* | [**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)
|
||||
|
@ -4,13 +4,13 @@ All URIs are relative to *http://localhost:3000*
|
||||
|
||||
| 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)
|
||||
|
||||
@ -35,10 +35,10 @@ public class Example {
|
||||
String pathString = "pathString_example"; // String |
|
||||
Integer pathInteger = 56; // Integer |
|
||||
try {
|
||||
String result = apiInstance.testsPathStringPathStringIntegerPathInteger(pathString, pathInteger);
|
||||
String result = apiInstance.testsPathStringpathStringIntegerPathInteger(pathString, pathInteger);
|
||||
System.out.println(result);
|
||||
} 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("Reason: " + e.getResponseBody());
|
||||
System.err.println("Response headers: " + e.getResponseHeaders());
|
||||
|
@ -59,8 +59,8 @@ public class PathApi {
|
||||
* @return String
|
||||
* @throws ApiException if fails to make API call
|
||||
*/
|
||||
public String testsPathStringPathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
|
||||
return this.testsPathStringPathStringIntegerPathInteger(pathString, pathInteger, Collections.emptyMap());
|
||||
public String testsPathStringpathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
|
||||
return this.testsPathStringpathStringIntegerPathInteger(pathString, pathInteger, Collections.emptyMap());
|
||||
}
|
||||
|
||||
|
||||
@ -73,17 +73,17 @@ public class PathApi {
|
||||
* @return String
|
||||
* @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;
|
||||
|
||||
// verify the required parameter 'pathString' is set
|
||||
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
|
||||
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
|
||||
|
@ -26,11 +26,11 @@ public interface PathApi extends ApiClient.Api {
|
||||
@Headers({
|
||||
"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)
|
||||
* 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)
|
||||
* @param pathString (required)
|
||||
* @param pathInteger (required)
|
||||
@ -40,7 +40,7 @@ public interface PathApi extends ApiClient.Api {
|
||||
@Headers({
|
||||
"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);
|
||||
|
||||
|
||||
}
|
||||
|
@ -120,8 +120,8 @@ Class | Method | HTTP request | Description
|
||||
*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* | [**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* | [**testsPathStringPathStringIntegerPathIntegerWithHttpInfo**](docs/PathApi.md#testsPathStringPathStringIntegerPathIntegerWithHttpInfo) | **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)
|
||||
*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* | [**testQueryDatetimeDateString**](docs/QueryApi.md#testQueryDatetimeDateString) | **GET** /query/datetime/date/string | Test query parameter(s)
|
||||
|
@ -4,14 +4,14 @@ All URIs are relative to *http://localhost:3000*
|
||||
|
||||
| Method | HTTP request | Description |
|
||||
|------------- | ------------- | -------------|
|
||||
| [**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) |
|
||||
| [**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) |
|
||||
|
||||
|
||||
|
||||
## testsPathStringPathStringIntegerPathInteger
|
||||
## testsPathStringpathStringIntegerPathInteger
|
||||
|
||||
> String testsPathStringPathStringIntegerPathInteger(pathString, pathInteger)
|
||||
> String testsPathStringpathStringIntegerPathInteger(pathString, pathInteger)
|
||||
|
||||
Test path parameter(s)
|
||||
|
||||
@ -36,10 +36,10 @@ public class Example {
|
||||
String pathString = "pathString_example"; // String |
|
||||
Integer pathInteger = 56; // Integer |
|
||||
try {
|
||||
String result = apiInstance.testsPathStringPathStringIntegerPathInteger(pathString, pathInteger);
|
||||
String result = apiInstance.testsPathStringpathStringIntegerPathInteger(pathString, pathInteger);
|
||||
System.out.println(result);
|
||||
} 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("Reason: " + e.getResponseBody());
|
||||
System.err.println("Response headers: " + e.getResponseHeaders());
|
||||
@ -76,9 +76,9 @@ No authorization required
|
||||
|-------------|-------------|------------------|
|
||||
| **200** | Successful operation | - |
|
||||
|
||||
## testsPathStringPathStringIntegerPathIntegerWithHttpInfo
|
||||
## testsPathStringpathStringIntegerPathIntegerWithHttpInfo
|
||||
|
||||
> ApiResponse<String> testsPathStringPathStringIntegerPathInteger testsPathStringPathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger)
|
||||
> ApiResponse<String> testsPathStringpathStringIntegerPathInteger testsPathStringpathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger)
|
||||
|
||||
Test path parameter(s)
|
||||
|
||||
@ -104,12 +104,12 @@ public class Example {
|
||||
String pathString = "pathString_example"; // String |
|
||||
Integer pathInteger = 56; // Integer |
|
||||
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("Response headers: " + response.getHeaders());
|
||||
System.out.println("Response body: " + response.getData());
|
||||
} 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("Response headers: " + e.getResponseHeaders());
|
||||
System.err.println("Reason: " + e.getResponseBody());
|
||||
|
@ -94,8 +94,8 @@ public class PathApi {
|
||||
* @return String
|
||||
* @throws ApiException if fails to make API call
|
||||
*/
|
||||
public String testsPathStringPathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
|
||||
ApiResponse<String> localVarResponse = testsPathStringPathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger);
|
||||
public String testsPathStringpathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
|
||||
ApiResponse<String> localVarResponse = testsPathStringpathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger);
|
||||
return localVarResponse.getData();
|
||||
}
|
||||
|
||||
@ -107,8 +107,8 @@ public class PathApi {
|
||||
* @return ApiResponse<String>
|
||||
* @throws ApiException if fails to make API call
|
||||
*/
|
||||
public ApiResponse<String> testsPathStringPathStringIntegerPathIntegerWithHttpInfo(String pathString, Integer pathInteger) throws ApiException {
|
||||
HttpRequest.Builder localVarRequestBuilder = testsPathStringPathStringIntegerPathIntegerRequestBuilder(pathString, pathInteger);
|
||||
public ApiResponse<String> testsPathStringpathStringIntegerPathIntegerWithHttpInfo(String pathString, Integer pathInteger) throws ApiException {
|
||||
HttpRequest.Builder localVarRequestBuilder = testsPathStringpathStringIntegerPathIntegerRequestBuilder(pathString, pathInteger);
|
||||
try {
|
||||
HttpResponse<InputStream> localVarResponse = memberVarHttpClient.send(
|
||||
localVarRequestBuilder.build(),
|
||||
@ -118,7 +118,7 @@ public class PathApi {
|
||||
}
|
||||
try {
|
||||
if (localVarResponse.statusCode()/ 100 != 2) {
|
||||
throw getApiException("testsPathStringPathStringIntegerPathInteger", localVarResponse);
|
||||
throw getApiException("testsPathStringpathStringIntegerPathInteger", localVarResponse);
|
||||
}
|
||||
// for plain text response
|
||||
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
|
||||
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
|
||||
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();
|
||||
|
@ -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)
|
||||
*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)
|
||||
*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* | [**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)
|
||||
|
@ -4,12 +4,12 @@ All URIs are relative to *http://localhost:3000*
|
||||
|
||||
| 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>
|
||||
# **testsPathStringPathStringIntegerPathInteger**
|
||||
> String testsPathStringPathStringIntegerPathInteger(pathString, pathInteger)
|
||||
<a id="testsPathStringpathStringIntegerPathInteger"></a>
|
||||
# **testsPathStringpathStringIntegerPathInteger**
|
||||
> String testsPathStringpathStringIntegerPathInteger(pathString, pathInteger)
|
||||
|
||||
Test path parameter(s)
|
||||
|
||||
@ -33,10 +33,10 @@ public class Example {
|
||||
String pathString = "pathString_example"; // String |
|
||||
Integer pathInteger = 56; // Integer |
|
||||
try {
|
||||
String result = apiInstance.testsPathStringPathStringIntegerPathInteger(pathString, pathInteger);
|
||||
String result = apiInstance.testsPathStringpathStringIntegerPathInteger(pathString, pathInteger);
|
||||
System.out.println(result);
|
||||
} 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("Reason: " + e.getResponseBody());
|
||||
System.err.println("Response headers: " + e.getResponseHeaders());
|
||||
|
@ -73,7 +73,7 @@ public class PathApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Build call for testsPathStringPathStringIntegerPathInteger
|
||||
* Build call for testsPathStringpathStringIntegerPathInteger
|
||||
* @param pathString (required)
|
||||
* @param pathInteger (required)
|
||||
* @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>
|
||||
</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;
|
||||
// Operation Servers
|
||||
String[] localBasePaths = new String[] { };
|
||||
@ -132,18 +132,18 @@ public class PathApi {
|
||||
}
|
||||
|
||||
@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
|
||||
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
|
||||
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>
|
||||
</table>
|
||||
*/
|
||||
public String testsPathStringPathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
|
||||
ApiResponse<String> localVarResp = testsPathStringPathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger);
|
||||
public String testsPathStringpathStringIntegerPathInteger(String pathString, Integer pathInteger) throws ApiException {
|
||||
ApiResponse<String> localVarResp = testsPathStringpathStringIntegerPathIntegerWithHttpInfo(pathString, pathInteger);
|
||||
return localVarResp.getData();
|
||||
}
|
||||
|
||||
@ -178,8 +178,8 @@ public class PathApi {
|
||||
<tr><td> 200 </td><td> Successful operation </td><td> - </td></tr>
|
||||
</table>
|
||||
*/
|
||||
public ApiResponse<String> testsPathStringPathStringIntegerPathIntegerWithHttpInfo(String pathString, Integer pathInteger) throws ApiException {
|
||||
okhttp3.Call localVarCall = testsPathStringPathStringIntegerPathIntegerValidateBeforeCall(pathString, pathInteger, null);
|
||||
public ApiResponse<String> testsPathStringpathStringIntegerPathIntegerWithHttpInfo(String pathString, Integer pathInteger) throws ApiException {
|
||||
okhttp3.Call localVarCall = testsPathStringpathStringIntegerPathIntegerValidateBeforeCall(pathString, pathInteger, null);
|
||||
Type localVarReturnType = new TypeToken<String>(){}.getType();
|
||||
return localVarApiClient.execute(localVarCall, localVarReturnType);
|
||||
}
|
||||
@ -198,9 +198,9 @@ public class PathApi {
|
||||
<tr><td> 200 </td><td> Successful operation </td><td> - </td></tr>
|
||||
</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();
|
||||
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
|
||||
return localVarCall;
|
||||
|
@ -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)
|
||||
*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)
|
||||
*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_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)
|
||||
|
@ -4,11 +4,11 @@ All URIs are relative to *http://localhost:3000*
|
||||
|
||||
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**
|
||||
> str tests_path_string_path_string_integer_path_integer(path_string, path_integer)
|
||||
# **tests_path_stringpath_string_integer_path_integer**
|
||||
> str tests_path_stringpath_string_integer_path_integer(path_string, path_integer)
|
||||
|
||||
Test path parameter(s)
|
||||
|
||||
@ -39,11 +39,11 @@ with openapi_client.ApiClient(configuration) as api_client:
|
||||
|
||||
try:
|
||||
# Test path parameter(s)
|
||||
api_response = api_instance.tests_path_string_path_string_integer_path_integer(path_string, path_integer)
|
||||
print("The response of PathApi->tests_path_string_path_string_integer_path_integer:\n")
|
||||
api_response = api_instance.tests_path_stringpath_string_integer_path_integer(path_string, path_integer)
|
||||
print("The response of PathApi->tests_path_stringpath_string_integer_path_integer:\n")
|
||||
pprint(api_response)
|
||||
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)
|
||||
```
|
||||
|
||||
|
||||
|
@ -44,14 +44,14 @@ class PathApi(object):
|
||||
self.api_client = api_client
|
||||
|
||||
@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
|
||||
This method makes a synchronous HTTP request by default. To make an
|
||||
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()
|
||||
|
||||
:param path_string: (required)
|
||||
@ -71,18 +71,18 @@ class PathApi(object):
|
||||
"""
|
||||
kwargs['_return_http_data_only'] = True
|
||||
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")
|
||||
return self.tests_path_string_path_string_integer_path_integer_with_http_info(path_string, path_integer, **kwargs) # noqa: E501
|
||||
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_stringpath_string_integer_path_integer_with_http_info(path_string, path_integer, **kwargs) # noqa: E501
|
||||
|
||||
@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
|
||||
This method makes a synchronous HTTP request by default. To make an
|
||||
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()
|
||||
|
||||
:param path_string: (required)
|
||||
@ -137,7 +137,7 @@ class PathApi(object):
|
||||
if _key not in _all_params:
|
||||
raise ApiTypeError(
|
||||
"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
|
||||
del _params['kwargs']
|
||||
|
@ -39,9 +39,9 @@ namespace Org.OpenAPITools.Model
|
||||
/// <param name="capitalCamel">capitalCamel.</param>
|
||||
/// <param name="smallSnake">smallSnake.</param>
|
||||
/// <param name="capitalSnake">capitalSnake.</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
|
||||
/// <param name="aTTNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
|
||||
/// <param name="attNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
|
||||
{
|
||||
this._SmallCamel = smallCamel;
|
||||
if (this.SmallCamel != null)
|
||||
@ -63,12 +63,12 @@ namespace Org.OpenAPITools.Model
|
||||
{
|
||||
this._flagCapitalSnake = true;
|
||||
}
|
||||
this._SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
this._SCAETHFlowPoints = scaethFlowPoints;
|
||||
if (this.SCAETHFlowPoints != null)
|
||||
{
|
||||
this._flagSCAETHFlowPoints = true;
|
||||
}
|
||||
this._ATT_NAME = aTTNAME;
|
||||
this._ATT_NAME = attNAME;
|
||||
if (this.ATT_NAME != null)
|
||||
{
|
||||
this._flagATT_NAME = true;
|
||||
|
@ -33,19 +33,19 @@ namespace Org.OpenAPITools.Model
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Capitalization" /> class.
|
||||
/// </summary>
|
||||
/// <param name="aTTNAME">Name of the pet </param>
|
||||
/// <param name="attNAME">Name of the pet </param>
|
||||
/// <param name="capitalCamel">capitalCamel</param>
|
||||
/// <param name="capitalSnake">capitalSnake</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param>
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints</param>
|
||||
/// <param name="smallCamel">smallCamel</param>
|
||||
/// <param name="smallSnake">smallSnake</param>
|
||||
[JsonConstructor]
|
||||
public Capitalization(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;
|
||||
CapitalSnake = capitalSnake;
|
||||
SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
SCAETHFlowPoints = scaethFlowPoints;
|
||||
SmallCamel = smallCamel;
|
||||
SmallSnake = smallSnake;
|
||||
OnCreated();
|
||||
@ -148,10 +148,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
|
||||
|
||||
string? aTTNAME = default;
|
||||
string? attNAME = default;
|
||||
string? capitalCamel = default;
|
||||
string? capitalSnake = default;
|
||||
string? sCAETHFlowPoints = default;
|
||||
string? scaethFlowPoints = default;
|
||||
string? smallCamel = default;
|
||||
string? smallSnake = default;
|
||||
|
||||
@ -171,7 +171,7 @@ namespace Org.OpenAPITools.Model
|
||||
switch (propertyName)
|
||||
{
|
||||
case "ATT_NAME":
|
||||
aTTNAME = utf8JsonReader.GetString();
|
||||
attNAME = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "CapitalCamel":
|
||||
capitalCamel = utf8JsonReader.GetString();
|
||||
@ -180,7 +180,7 @@ namespace Org.OpenAPITools.Model
|
||||
capitalSnake = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "SCA_ETH_Flow_Points":
|
||||
sCAETHFlowPoints = utf8JsonReader.GetString();
|
||||
scaethFlowPoints = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "smallCamel":
|
||||
smallCamel = utf8JsonReader.GetString();
|
||||
@ -194,8 +194,8 @@ namespace Org.OpenAPITools.Model
|
||||
}
|
||||
}
|
||||
|
||||
if (aTTNAME == null)
|
||||
throw new ArgumentNullException(nameof(aTTNAME), "Property is required for class Capitalization.");
|
||||
if (attNAME == null)
|
||||
throw new ArgumentNullException(nameof(attNAME), "Property is required for class Capitalization.");
|
||||
|
||||
if (capitalCamel == null)
|
||||
throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization.");
|
||||
@ -203,8 +203,8 @@ namespace Org.OpenAPITools.Model
|
||||
if (capitalSnake == null)
|
||||
throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization.");
|
||||
|
||||
if (sCAETHFlowPoints == null)
|
||||
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is required for class Capitalization.");
|
||||
if (scaethFlowPoints == null)
|
||||
throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is required for class Capitalization.");
|
||||
|
||||
if (smallCamel == null)
|
||||
throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization.");
|
||||
@ -212,7 +212,7 @@ namespace Org.OpenAPITools.Model
|
||||
if (smallSnake == null)
|
||||
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>
|
||||
|
@ -31,19 +31,19 @@ namespace Org.OpenAPITools.Model
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Capitalization" /> class.
|
||||
/// </summary>
|
||||
/// <param name="aTTNAME">Name of the pet </param>
|
||||
/// <param name="attNAME">Name of the pet </param>
|
||||
/// <param name="capitalCamel">capitalCamel</param>
|
||||
/// <param name="capitalSnake">capitalSnake</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param>
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints</param>
|
||||
/// <param name="smallCamel">smallCamel</param>
|
||||
/// <param name="smallSnake">smallSnake</param>
|
||||
[JsonConstructor]
|
||||
public Capitalization(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;
|
||||
CapitalSnake = capitalSnake;
|
||||
SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
SCAETHFlowPoints = scaethFlowPoints;
|
||||
SmallCamel = smallCamel;
|
||||
SmallSnake = smallSnake;
|
||||
OnCreated();
|
||||
@ -146,10 +146,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
|
||||
|
||||
string aTTNAME = default;
|
||||
string attNAME = default;
|
||||
string capitalCamel = default;
|
||||
string capitalSnake = default;
|
||||
string sCAETHFlowPoints = default;
|
||||
string scaethFlowPoints = default;
|
||||
string smallCamel = default;
|
||||
string smallSnake = default;
|
||||
|
||||
@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Model
|
||||
switch (propertyName)
|
||||
{
|
||||
case "ATT_NAME":
|
||||
aTTNAME = utf8JsonReader.GetString();
|
||||
attNAME = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "CapitalCamel":
|
||||
capitalCamel = utf8JsonReader.GetString();
|
||||
@ -178,7 +178,7 @@ namespace Org.OpenAPITools.Model
|
||||
capitalSnake = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "SCA_ETH_Flow_Points":
|
||||
sCAETHFlowPoints = utf8JsonReader.GetString();
|
||||
scaethFlowPoints = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "smallCamel":
|
||||
smallCamel = utf8JsonReader.GetString();
|
||||
@ -192,8 +192,8 @@ namespace Org.OpenAPITools.Model
|
||||
}
|
||||
}
|
||||
|
||||
if (aTTNAME == null)
|
||||
throw new ArgumentNullException(nameof(aTTNAME), "Property is required for class Capitalization.");
|
||||
if (attNAME == null)
|
||||
throw new ArgumentNullException(nameof(attNAME), "Property is required for class Capitalization.");
|
||||
|
||||
if (capitalCamel == null)
|
||||
throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization.");
|
||||
@ -201,8 +201,8 @@ namespace Org.OpenAPITools.Model
|
||||
if (capitalSnake == null)
|
||||
throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization.");
|
||||
|
||||
if (sCAETHFlowPoints == null)
|
||||
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is required for class Capitalization.");
|
||||
if (scaethFlowPoints == null)
|
||||
throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is required for class Capitalization.");
|
||||
|
||||
if (smallCamel == null)
|
||||
throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization.");
|
||||
@ -210,7 +210,7 @@ namespace Org.OpenAPITools.Model
|
||||
if (smallSnake == null)
|
||||
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>
|
||||
|
@ -31,19 +31,19 @@ namespace Org.OpenAPITools.Model
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Capitalization" /> class.
|
||||
/// </summary>
|
||||
/// <param name="aTTNAME">Name of the pet </param>
|
||||
/// <param name="attNAME">Name of the pet </param>
|
||||
/// <param name="capitalCamel">capitalCamel</param>
|
||||
/// <param name="capitalSnake">capitalSnake</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints</param>
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints</param>
|
||||
/// <param name="smallCamel">smallCamel</param>
|
||||
/// <param name="smallSnake">smallSnake</param>
|
||||
[JsonConstructor]
|
||||
public Capitalization(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;
|
||||
CapitalSnake = capitalSnake;
|
||||
SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
SCAETHFlowPoints = scaethFlowPoints;
|
||||
SmallCamel = smallCamel;
|
||||
SmallSnake = smallSnake;
|
||||
OnCreated();
|
||||
@ -146,10 +146,10 @@ namespace Org.OpenAPITools.Model
|
||||
|
||||
JsonTokenType startingTokenType = utf8JsonReader.TokenType;
|
||||
|
||||
string aTTNAME = default;
|
||||
string attNAME = default;
|
||||
string capitalCamel = default;
|
||||
string capitalSnake = default;
|
||||
string sCAETHFlowPoints = default;
|
||||
string scaethFlowPoints = default;
|
||||
string smallCamel = default;
|
||||
string smallSnake = default;
|
||||
|
||||
@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Model
|
||||
switch (propertyName)
|
||||
{
|
||||
case "ATT_NAME":
|
||||
aTTNAME = utf8JsonReader.GetString();
|
||||
attNAME = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "CapitalCamel":
|
||||
capitalCamel = utf8JsonReader.GetString();
|
||||
@ -178,7 +178,7 @@ namespace Org.OpenAPITools.Model
|
||||
capitalSnake = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "SCA_ETH_Flow_Points":
|
||||
sCAETHFlowPoints = utf8JsonReader.GetString();
|
||||
scaethFlowPoints = utf8JsonReader.GetString();
|
||||
break;
|
||||
case "smallCamel":
|
||||
smallCamel = utf8JsonReader.GetString();
|
||||
@ -192,8 +192,8 @@ namespace Org.OpenAPITools.Model
|
||||
}
|
||||
}
|
||||
|
||||
if (aTTNAME == null)
|
||||
throw new ArgumentNullException(nameof(aTTNAME), "Property is required for class Capitalization.");
|
||||
if (attNAME == null)
|
||||
throw new ArgumentNullException(nameof(attNAME), "Property is required for class Capitalization.");
|
||||
|
||||
if (capitalCamel == null)
|
||||
throw new ArgumentNullException(nameof(capitalCamel), "Property is required for class Capitalization.");
|
||||
@ -201,8 +201,8 @@ namespace Org.OpenAPITools.Model
|
||||
if (capitalSnake == null)
|
||||
throw new ArgumentNullException(nameof(capitalSnake), "Property is required for class Capitalization.");
|
||||
|
||||
if (sCAETHFlowPoints == null)
|
||||
throw new ArgumentNullException(nameof(sCAETHFlowPoints), "Property is required for class Capitalization.");
|
||||
if (scaethFlowPoints == null)
|
||||
throw new ArgumentNullException(nameof(scaethFlowPoints), "Property is required for class Capitalization.");
|
||||
|
||||
if (smallCamel == null)
|
||||
throw new ArgumentNullException(nameof(smallCamel), "Property is required for class Capitalization.");
|
||||
@ -210,7 +210,7 @@ namespace Org.OpenAPITools.Model
|
||||
if (smallSnake == null)
|
||||
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>
|
||||
|
@ -40,16 +40,16 @@ namespace Org.OpenAPITools.Model
|
||||
/// <param name="capitalCamel">capitalCamel.</param>
|
||||
/// <param name="smallSnake">smallSnake.</param>
|
||||
/// <param name="capitalSnake">capitalSnake.</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
|
||||
/// <param name="aTTNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
|
||||
/// <param name="attNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
|
||||
{
|
||||
this.SmallCamel = smallCamel;
|
||||
this.CapitalCamel = capitalCamel;
|
||||
this.SmallSnake = smallSnake;
|
||||
this.CapitalSnake = capitalSnake;
|
||||
this.SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
this.ATT_NAME = aTTNAME;
|
||||
this.SCAETHFlowPoints = scaethFlowPoints;
|
||||
this.ATT_NAME = attNAME;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
|
@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
|
||||
/// <param name="capitalCamel">capitalCamel.</param>
|
||||
/// <param name="smallSnake">smallSnake.</param>
|
||||
/// <param name="capitalSnake">capitalSnake.</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
|
||||
/// <param name="aTTNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
|
||||
/// <param name="attNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
|
||||
{
|
||||
this.SmallCamel = smallCamel;
|
||||
this.CapitalCamel = capitalCamel;
|
||||
this.SmallSnake = smallSnake;
|
||||
this.CapitalSnake = capitalSnake;
|
||||
this.SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
this.ATT_NAME = aTTNAME;
|
||||
this.SCAETHFlowPoints = scaethFlowPoints;
|
||||
this.ATT_NAME = attNAME;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
|
@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
|
||||
/// <param name="capitalCamel">capitalCamel.</param>
|
||||
/// <param name="smallSnake">smallSnake.</param>
|
||||
/// <param name="capitalSnake">capitalSnake.</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
|
||||
/// <param name="aTTNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
|
||||
/// <param name="attNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
|
||||
{
|
||||
this.SmallCamel = smallCamel;
|
||||
this.CapitalCamel = capitalCamel;
|
||||
this.SmallSnake = smallSnake;
|
||||
this.CapitalSnake = capitalSnake;
|
||||
this.SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
this.ATT_NAME = aTTNAME;
|
||||
this.SCAETHFlowPoints = scaethFlowPoints;
|
||||
this.ATT_NAME = attNAME;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
|
@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
|
||||
/// <param name="capitalCamel">capitalCamel.</param>
|
||||
/// <param name="smallSnake">smallSnake.</param>
|
||||
/// <param name="capitalSnake">capitalSnake.</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
|
||||
/// <param name="aTTNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
|
||||
/// <param name="attNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
|
||||
{
|
||||
this.SmallCamel = smallCamel;
|
||||
this.CapitalCamel = capitalCamel;
|
||||
this.SmallSnake = smallSnake;
|
||||
this.CapitalSnake = capitalSnake;
|
||||
this.SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
this.ATT_NAME = aTTNAME;
|
||||
this.SCAETHFlowPoints = scaethFlowPoints;
|
||||
this.ATT_NAME = attNAME;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
|
@ -37,16 +37,16 @@ namespace Org.OpenAPITools.Model
|
||||
/// <param name="capitalCamel">capitalCamel.</param>
|
||||
/// <param name="smallSnake">smallSnake.</param>
|
||||
/// <param name="capitalSnake">capitalSnake.</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
|
||||
/// <param name="aTTNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
|
||||
/// <param name="attNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
|
||||
{
|
||||
this.SmallCamel = smallCamel;
|
||||
this.CapitalCamel = capitalCamel;
|
||||
this.SmallSnake = smallSnake;
|
||||
this.CapitalSnake = capitalSnake;
|
||||
this.SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
this.ATT_NAME = aTTNAME;
|
||||
this.SCAETHFlowPoints = scaethFlowPoints;
|
||||
this.ATT_NAME = attNAME;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
|
||||
/// <param name="capitalCamel">capitalCamel.</param>
|
||||
/// <param name="smallSnake">smallSnake.</param>
|
||||
/// <param name="capitalSnake">capitalSnake.</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
|
||||
/// <param name="aTTNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
|
||||
/// <param name="attNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
|
||||
{
|
||||
this.SmallCamel = smallCamel;
|
||||
this.CapitalCamel = capitalCamel;
|
||||
this.SmallSnake = smallSnake;
|
||||
this.CapitalSnake = capitalSnake;
|
||||
this.SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
this.ATT_NAME = aTTNAME;
|
||||
this.SCAETHFlowPoints = scaethFlowPoints;
|
||||
this.ATT_NAME = attNAME;
|
||||
this.AdditionalProperties = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
|
@ -39,16 +39,16 @@ namespace Org.OpenAPITools.Model
|
||||
/// <param name="capitalCamel">capitalCamel.</param>
|
||||
/// <param name="smallSnake">smallSnake.</param>
|
||||
/// <param name="capitalSnake">capitalSnake.</param>
|
||||
/// <param name="sCAETHFlowPoints">sCAETHFlowPoints.</param>
|
||||
/// <param name="aTTNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string sCAETHFlowPoints = default(string), string aTTNAME = default(string))
|
||||
/// <param name="scaethFlowPoints">scaethFlowPoints.</param>
|
||||
/// <param name="attNAME">Name of the pet .</param>
|
||||
public Capitalization(string smallCamel = default(string), string capitalCamel = default(string), string smallSnake = default(string), string capitalSnake = default(string), string scaethFlowPoints = default(string), string attNAME = default(string))
|
||||
{
|
||||
this.SmallCamel = smallCamel;
|
||||
this.CapitalCamel = capitalCamel;
|
||||
this.SmallSnake = smallSnake;
|
||||
this.CapitalSnake = capitalSnake;
|
||||
this.SCAETHFlowPoints = sCAETHFlowPoints;
|
||||
this.ATT_NAME = aTTNAME;
|
||||
this.SCAETHFlowPoints = scaethFlowPoints;
|
||||
this.ATT_NAME = attNAME;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
|
||||
|
@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
|
||||
|
@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
|
||||
|
@ -30,7 +30,7 @@ import java.io.Serializable
|
||||
data class ModelWithEnumPropertyHavingDefault (
|
||||
|
||||
@Json(name = "propertyName")
|
||||
val propertyName: ModelWithEnumPropertyHavingDefault.PropertyName = PropertyName.vALUE
|
||||
val propertyName: ModelWithEnumPropertyHavingDefault.PropertyName = PropertyName.`value`
|
||||
|
||||
) : Serializable {
|
||||
companion object {
|
||||
@ -40,11 +40,11 @@ data class ModelWithEnumPropertyHavingDefault (
|
||||
/**
|
||||
*
|
||||
*
|
||||
* Values: vALUE,unknownDefaultOpenApi
|
||||
* Values: `value`,unknownDefaultOpenApi
|
||||
*/
|
||||
@JsonClass(generateAdapter = false)
|
||||
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");
|
||||
}
|
||||
}
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ internal struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
internal var capitalCamel: String?
|
||||
internal var smallSnake: String?
|
||||
internal var capitalSnake: String?
|
||||
internal var sCAETHFlowPoints: String?
|
||||
internal var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
internal var ATT_NAME: String?
|
||||
|
||||
internal init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
internal init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ internal struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ internal struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ import AnyCodable
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ import AnyCodable
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ import AnyCodable
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public private(set) var capitalCamel: String?
|
||||
public private(set) var smallSnake: String?
|
||||
public private(set) var capitalSnake: String?
|
||||
public private(set) var sCAETHFlowPoints: String?
|
||||
public private(set) var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public private(set) var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -21,16 +21,16 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -39,7 +39,7 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -51,7 +51,7 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
|
||||
@ -60,7 +60,7 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
|
||||
lhs.capitalCamel == rhs.capitalCamel &&
|
||||
lhs.smallSnake == rhs.smallSnake &&
|
||||
lhs.capitalSnake == rhs.capitalSnake &&
|
||||
lhs.sCAETHFlowPoints == rhs.sCAETHFlowPoints &&
|
||||
lhs.scaETHFlowPoints == rhs.scaETHFlowPoints &&
|
||||
lhs.ATT_NAME == rhs.ATT_NAME
|
||||
|
||||
}
|
||||
@ -70,7 +70,7 @@ public final class Capitalization: Codable, JSONEncodable, Hashable {
|
||||
hasher.combine(capitalCamel?.hashValue)
|
||||
hasher.combine(smallSnake?.hashValue)
|
||||
hasher.combine(capitalSnake?.hashValue)
|
||||
hasher.combine(sCAETHFlowPoints?.hashValue)
|
||||
hasher.combine(scaETHFlowPoints?.hashValue)
|
||||
hasher.combine(ATT_NAME?.hashValue)
|
||||
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -17,16 +17,16 @@ public final class Capitalization: Content, Hashable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -35,7 +35,7 @@ public final class Capitalization: Content, Hashable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -47,7 +47,7 @@ public final class Capitalization: Content, Hashable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
|
||||
@ -56,7 +56,7 @@ public final class Capitalization: Content, Hashable {
|
||||
lhs.capitalCamel == rhs.capitalCamel &&
|
||||
lhs.smallSnake == rhs.smallSnake &&
|
||||
lhs.capitalSnake == rhs.capitalSnake &&
|
||||
lhs.sCAETHFlowPoints == rhs.sCAETHFlowPoints &&
|
||||
lhs.scaETHFlowPoints == rhs.scaETHFlowPoints &&
|
||||
lhs.ATT_NAME == rhs.ATT_NAME
|
||||
|
||||
}
|
||||
@ -66,7 +66,7 @@ public final class Capitalization: Content, Hashable {
|
||||
hasher.combine(capitalCamel?.hashValue)
|
||||
hasher.combine(smallSnake?.hashValue)
|
||||
hasher.combine(capitalSnake?.hashValue)
|
||||
hasher.combine(sCAETHFlowPoints?.hashValue)
|
||||
hasher.combine(scaETHFlowPoints?.hashValue)
|
||||
hasher.combine(ATT_NAME?.hashValue)
|
||||
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -16,16 +16,16 @@ public struct Capitalization: Codable, JSONEncodable {
|
||||
public var capitalCamel: String?
|
||||
public var smallSnake: String?
|
||||
public var capitalSnake: String?
|
||||
public var sCAETHFlowPoints: String?
|
||||
public var scaETHFlowPoints: String?
|
||||
/** Name of the pet */
|
||||
public var ATT_NAME: String?
|
||||
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, sCAETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
public init(smallCamel: String? = nil, capitalCamel: String? = nil, smallSnake: String? = nil, capitalSnake: String? = nil, scaETHFlowPoints: String? = nil, ATT_NAME: String? = nil) {
|
||||
self.smallCamel = smallCamel
|
||||
self.capitalCamel = capitalCamel
|
||||
self.smallSnake = smallSnake
|
||||
self.capitalSnake = capitalSnake
|
||||
self.sCAETHFlowPoints = sCAETHFlowPoints
|
||||
self.scaETHFlowPoints = scaETHFlowPoints
|
||||
self.ATT_NAME = ATT_NAME
|
||||
}
|
||||
|
||||
@ -34,7 +34,7 @@ public struct Capitalization: Codable, JSONEncodable {
|
||||
case capitalCamel = "CapitalCamel"
|
||||
case smallSnake = "small_Snake"
|
||||
case capitalSnake = "Capital_Snake"
|
||||
case sCAETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case scaETHFlowPoints = "SCA_ETH_Flow_Points"
|
||||
case ATT_NAME
|
||||
}
|
||||
|
||||
@ -46,7 +46,7 @@ public struct Capitalization: Codable, JSONEncodable {
|
||||
try container.encodeIfPresent(capitalCamel, forKey: .capitalCamel)
|
||||
try container.encodeIfPresent(smallSnake, forKey: .smallSnake)
|
||||
try container.encodeIfPresent(capitalSnake, forKey: .capitalSnake)
|
||||
try container.encodeIfPresent(sCAETHFlowPoints, forKey: .sCAETHFlowPoints)
|
||||
try container.encodeIfPresent(scaETHFlowPoints, forKey: .scaETHFlowPoints)
|
||||
try container.encodeIfPresent(ATT_NAME, forKey: .ATT_NAME)
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -48,13 +48,13 @@ export interface Capitalization {
|
||||
* @type {string}
|
||||
* @memberof Capitalization
|
||||
*/
|
||||
sCAETHFlowPoints?: string;
|
||||
scaETHFlowPoints?: string;
|
||||
/**
|
||||
* Name of the pet
|
||||
* @type {string}
|
||||
* @memberof Capitalization
|
||||
*/
|
||||
aTTNAME?: string;
|
||||
attNAME?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -80,8 +80,8 @@ export function CapitalizationFromJSONTyped(json: any, ignoreDiscriminator: bool
|
||||
'capitalCamel': !exists(json, 'CapitalCamel') ? undefined : json['CapitalCamel'],
|
||||
'smallSnake': !exists(json, 'small_Snake') ? undefined : json['small_Snake'],
|
||||
'capitalSnake': !exists(json, 'Capital_Snake') ? undefined : json['Capital_Snake'],
|
||||
'sCAETHFlowPoints': !exists(json, 'SCA_ETH_Flow_Points') ? undefined : json['SCA_ETH_Flow_Points'],
|
||||
'aTTNAME': !exists(json, 'ATT_NAME') ? undefined : json['ATT_NAME'],
|
||||
'scaETHFlowPoints': !exists(json, 'SCA_ETH_Flow_Points') ? undefined : json['SCA_ETH_Flow_Points'],
|
||||
'attNAME': !exists(json, 'ATT_NAME') ? undefined : json['ATT_NAME'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -98,8 +98,8 @@ export function CapitalizationToJSON(value?: Capitalization | null): any {
|
||||
'CapitalCamel': value.capitalCamel,
|
||||
'small_Snake': value.smallSnake,
|
||||
'Capital_Snake': value.capitalSnake,
|
||||
'SCA_ETH_Flow_Points': value.sCAETHFlowPoints,
|
||||
'ATT_NAME': value.aTTNAME,
|
||||
'SCA_ETH_Flow_Points': value.scaETHFlowPoints,
|
||||
'ATT_NAME': value.attNAME,
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -26,7 +26,7 @@ class Capitalization {
|
||||
|
||||
this.capitalSnake,
|
||||
|
||||
this.sCAETHFlowPoints,
|
||||
this.scaETHFlowPoints,
|
||||
|
||||
this.ATT_NAME,
|
||||
});
|
||||
@ -87,7 +87,7 @@ class Capitalization {
|
||||
)
|
||||
|
||||
|
||||
final String? sCAETHFlowPoints;
|
||||
final String? scaETHFlowPoints;
|
||||
|
||||
|
||||
|
||||
@ -110,7 +110,7 @@ class Capitalization {
|
||||
other.capitalCamel == capitalCamel &&
|
||||
other.smallSnake == smallSnake &&
|
||||
other.capitalSnake == capitalSnake &&
|
||||
other.sCAETHFlowPoints == sCAETHFlowPoints &&
|
||||
other.scaETHFlowPoints == scaETHFlowPoints &&
|
||||
other.ATT_NAME == ATT_NAME;
|
||||
|
||||
@override
|
||||
@ -119,7 +119,7 @@ class Capitalization {
|
||||
capitalCamel.hashCode +
|
||||
smallSnake.hashCode +
|
||||
capitalSnake.hashCode +
|
||||
sCAETHFlowPoints.hashCode +
|
||||
scaETHFlowPoints.hashCode +
|
||||
ATT_NAME.hashCode;
|
||||
|
||||
factory Capitalization.fromJson(Map<String, dynamic> json) => _$CapitalizationFromJson(json);
|
||||
|
@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -15,7 +15,7 @@ part 'capitalization.g.dart';
|
||||
/// * [capitalCamel]
|
||||
/// * [smallSnake]
|
||||
/// * [capitalSnake]
|
||||
/// * [sCAETHFlowPoints]
|
||||
/// * [scaETHFlowPoints]
|
||||
/// * [ATT_NAME] - Name of the pet
|
||||
@BuiltValue()
|
||||
abstract class Capitalization implements Built<Capitalization, CapitalizationBuilder> {
|
||||
@ -32,7 +32,7 @@ abstract class Capitalization implements Built<Capitalization, CapitalizationBui
|
||||
String? get capitalSnake;
|
||||
|
||||
@BuiltValueField(wireName: r'SCA_ETH_Flow_Points')
|
||||
String? get sCAETHFlowPoints;
|
||||
String? get scaETHFlowPoints;
|
||||
|
||||
/// Name of the pet
|
||||
@BuiltValueField(wireName: r'ATT_NAME')
|
||||
@ -89,10 +89,10 @@ class _$CapitalizationSerializer implements PrimitiveSerializer<Capitalization>
|
||||
specifiedType: const FullType(String),
|
||||
);
|
||||
}
|
||||
if (object.sCAETHFlowPoints != null) {
|
||||
if (object.scaETHFlowPoints != null) {
|
||||
yield r'SCA_ETH_Flow_Points';
|
||||
yield serializers.serialize(
|
||||
object.sCAETHFlowPoints,
|
||||
object.scaETHFlowPoints,
|
||||
specifiedType: const FullType(String),
|
||||
);
|
||||
}
|
||||
@ -159,7 +159,7 @@ class _$CapitalizationSerializer implements PrimitiveSerializer<Capitalization>
|
||||
value,
|
||||
specifiedType: const FullType(String),
|
||||
) as String;
|
||||
result.sCAETHFlowPoints = valueDes;
|
||||
result.scaETHFlowPoints = valueDes;
|
||||
break;
|
||||
case r'ATT_NAME':
|
||||
final valueDes = serializers.deserialize(
|
||||
|
@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
||||
**capitalCamel** | **String** | | [optional]
|
||||
**smallSnake** | **String** | | [optional]
|
||||
**capitalSnake** | **String** | | [optional]
|
||||
**sCAETHFlowPoints** | **String** | | [optional]
|
||||
**scaETHFlowPoints** | **String** | | [optional]
|
||||
**ATT_NAME** | **String** | Name of the pet | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
@ -17,7 +17,7 @@ class Capitalization {
|
||||
this.capitalCamel,
|
||||
this.smallSnake,
|
||||
this.capitalSnake,
|
||||
this.sCAETHFlowPoints,
|
||||
this.scaETHFlowPoints,
|
||||
this.ATT_NAME,
|
||||
});
|
||||
|
||||
@ -59,7 +59,7 @@ class Capitalization {
|
||||
/// source code must fall back to having a nullable type.
|
||||
/// Consider adding a "default:" property in the specification file to hide this note.
|
||||
///
|
||||
String? sCAETHFlowPoints;
|
||||
String? scaETHFlowPoints;
|
||||
|
||||
/// Name of the pet
|
||||
///
|
||||
@ -76,7 +76,7 @@ class Capitalization {
|
||||
other.capitalCamel == capitalCamel &&
|
||||
other.smallSnake == smallSnake &&
|
||||
other.capitalSnake == capitalSnake &&
|
||||
other.sCAETHFlowPoints == sCAETHFlowPoints &&
|
||||
other.scaETHFlowPoints == scaETHFlowPoints &&
|
||||
other.ATT_NAME == ATT_NAME;
|
||||
|
||||
@override
|
||||
@ -86,11 +86,11 @@ class Capitalization {
|
||||
(capitalCamel == null ? 0 : capitalCamel!.hashCode) +
|
||||
(smallSnake == null ? 0 : smallSnake!.hashCode) +
|
||||
(capitalSnake == null ? 0 : capitalSnake!.hashCode) +
|
||||
(sCAETHFlowPoints == null ? 0 : sCAETHFlowPoints!.hashCode) +
|
||||
(scaETHFlowPoints == null ? 0 : scaETHFlowPoints!.hashCode) +
|
||||
(ATT_NAME == null ? 0 : ATT_NAME!.hashCode);
|
||||
|
||||
@override
|
||||
String toString() => 'Capitalization[smallCamel=$smallCamel, capitalCamel=$capitalCamel, smallSnake=$smallSnake, capitalSnake=$capitalSnake, sCAETHFlowPoints=$sCAETHFlowPoints, ATT_NAME=$ATT_NAME]';
|
||||
String toString() => 'Capitalization[smallCamel=$smallCamel, capitalCamel=$capitalCamel, smallSnake=$smallSnake, capitalSnake=$capitalSnake, scaETHFlowPoints=$scaETHFlowPoints, ATT_NAME=$ATT_NAME]';
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final json = <String, dynamic>{};
|
||||
@ -114,8 +114,8 @@ class Capitalization {
|
||||
} else {
|
||||
json[r'Capital_Snake'] = null;
|
||||
}
|
||||
if (this.sCAETHFlowPoints != null) {
|
||||
json[r'SCA_ETH_Flow_Points'] = this.sCAETHFlowPoints;
|
||||
if (this.scaETHFlowPoints != null) {
|
||||
json[r'SCA_ETH_Flow_Points'] = this.scaETHFlowPoints;
|
||||
} else {
|
||||
json[r'SCA_ETH_Flow_Points'] = null;
|
||||
}
|
||||
@ -150,7 +150,7 @@ class Capitalization {
|
||||
capitalCamel: mapValueOfType<String>(json, r'CapitalCamel'),
|
||||
smallSnake: mapValueOfType<String>(json, r'small_Snake'),
|
||||
capitalSnake: mapValueOfType<String>(json, r'Capital_Snake'),
|
||||
sCAETHFlowPoints: mapValueOfType<String>(json, r'SCA_ETH_Flow_Points'),
|
||||
scaETHFlowPoints: mapValueOfType<String>(json, r'SCA_ETH_Flow_Points'),
|
||||
ATT_NAME: mapValueOfType<String>(json, r'ATT_NAME'),
|
||||
);
|
||||
}
|
||||
|
@ -21,10 +21,10 @@ class Capitalization {
|
||||
/** @var string $capitalSnake */
|
||||
public $capitalSnake = "";
|
||||
|
||||
/** @var string $sCAETHFlowPoints */
|
||||
public $sCAETHFlowPoints = "";
|
||||
/** @var string $scaETHFlowPoints */
|
||||
public $scaETHFlowPoints = "";
|
||||
|
||||
/** @var string $aTTNAME Name of the pet*/
|
||||
public $aTTNAME = "";
|
||||
/** @var string $attNAME Name of the pet*/
|
||||
public $attNAME = "";
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user