mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-03 00:43:46 +00:00
feat: Add line breaks in Python API methods (#16770)
This commit is contained in:
@@ -42,7 +42,10 @@ class AuthApi:
|
||||
self.api_client = api_client
|
||||
|
||||
@validate_call
|
||||
def test_auth_http_basic(self, **kwargs) -> str: # noqa: E501
|
||||
def test_auth_http_basic(
|
||||
self,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""To test HTTP basic authentication # noqa: E501
|
||||
|
||||
To test HTTP basic authentication # noqa: E501
|
||||
@@ -70,7 +73,10 @@ class AuthApi:
|
||||
return self.test_auth_http_basic_with_http_info(**kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_auth_http_basic_with_http_info(self, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_auth_http_basic_with_http_info(
|
||||
self,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""To test HTTP basic authentication # noqa: E501
|
||||
|
||||
To test HTTP basic authentication # noqa: E501
|
||||
|
||||
@@ -50,7 +50,10 @@ class BodyApi:
|
||||
self.api_client = api_client
|
||||
|
||||
@validate_call
|
||||
def test_binary_gif(self, **kwargs) -> bytearray: # noqa: E501
|
||||
def test_binary_gif(
|
||||
self,
|
||||
**kwargs,
|
||||
) -> bytearray:
|
||||
"""Test binary (gif) response body # noqa: E501
|
||||
|
||||
Test binary (gif) response body # noqa: E501
|
||||
@@ -78,7 +81,10 @@ class BodyApi:
|
||||
return self.test_binary_gif_with_http_info(**kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_binary_gif_with_http_info(self, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_binary_gif_with_http_info(
|
||||
self,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test binary (gif) response body # noqa: E501
|
||||
|
||||
Test binary (gif) response body # noqa: E501
|
||||
@@ -182,7 +188,11 @@ class BodyApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_body_application_octetstream_binary(self, body : Optional[Union[StrictBytes, StrictStr]] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_body_application_octetstream_binary(
|
||||
self,
|
||||
body: Optional[Union[StrictBytes, StrictStr]] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test body parameter(s) # noqa: E501
|
||||
|
||||
Test body parameter(s) # noqa: E501
|
||||
@@ -212,7 +222,11 @@ class BodyApi:
|
||||
return self.test_body_application_octetstream_binary_with_http_info(body, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_body_application_octetstream_binary_with_http_info(self, body : Optional[Union[StrictBytes, StrictStr]] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_body_application_octetstream_binary_with_http_info(
|
||||
self,
|
||||
body: Optional[Union[StrictBytes, StrictStr]] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test body parameter(s) # noqa: E501
|
||||
|
||||
Test body parameter(s) # noqa: E501
|
||||
@@ -334,7 +348,11 @@ class BodyApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_body_multipart_formdata_array_of_binary(self, files : List[Union[StrictBytes, StrictStr]], **kwargs) -> str: # noqa: E501
|
||||
def test_body_multipart_formdata_array_of_binary(
|
||||
self,
|
||||
files: List[Union[StrictBytes, StrictStr]],
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test array of binary in multipart mime # noqa: E501
|
||||
|
||||
Test array of binary in multipart mime # noqa: E501
|
||||
@@ -364,7 +382,11 @@ class BodyApi:
|
||||
return self.test_body_multipart_formdata_array_of_binary_with_http_info(files, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_body_multipart_formdata_array_of_binary_with_http_info(self, files : List[Union[StrictBytes, StrictStr]], **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_body_multipart_formdata_array_of_binary_with_http_info(
|
||||
self,
|
||||
files: List[Union[StrictBytes, StrictStr]],
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test array of binary in multipart mime # noqa: E501
|
||||
|
||||
Test array of binary in multipart mime # noqa: E501
|
||||
@@ -482,7 +504,11 @@ class BodyApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_echo_body_free_form_object_response_string(self, body : Annotated[Optional[Dict[str, Any]], Field(description="Free form object")] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_echo_body_free_form_object_response_string(
|
||||
self,
|
||||
body: Annotated[Optional[Dict[str, Any]], Field(description="Free form object")] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test free form object # noqa: E501
|
||||
|
||||
Test free form object # noqa: E501
|
||||
@@ -512,7 +538,11 @@ class BodyApi:
|
||||
return self.test_echo_body_free_form_object_response_string_with_http_info(body, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_echo_body_free_form_object_response_string_with_http_info(self, body : Annotated[Optional[Dict[str, Any]], Field(description="Free form object")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_echo_body_free_form_object_response_string_with_http_info(
|
||||
self,
|
||||
body: Annotated[Optional[Dict[str, Any]], Field(description="Free form object")] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test free form object # noqa: E501
|
||||
|
||||
Test free form object # noqa: E501
|
||||
@@ -629,7 +659,11 @@ class BodyApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_echo_body_pet(self, pet : Annotated[Optional[Pet], Field(description="Pet object that needs to be added to the store")] = None, **kwargs) -> Pet: # noqa: E501
|
||||
def test_echo_body_pet(
|
||||
self,
|
||||
pet: Annotated[Optional[Pet], Field(description="Pet object that needs to be added to the store")] = None,
|
||||
**kwargs,
|
||||
) -> Pet:
|
||||
"""Test body parameter(s) # noqa: E501
|
||||
|
||||
Test body parameter(s) # noqa: E501
|
||||
@@ -659,7 +693,11 @@ class BodyApi:
|
||||
return self.test_echo_body_pet_with_http_info(pet, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_echo_body_pet_with_http_info(self, pet : Annotated[Optional[Pet], Field(description="Pet object that needs to be added to the store")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_echo_body_pet_with_http_info(
|
||||
self,
|
||||
pet: Annotated[Optional[Pet], Field(description="Pet object that needs to be added to the store")] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test body parameter(s) # noqa: E501
|
||||
|
||||
Test body parameter(s) # noqa: E501
|
||||
@@ -776,7 +814,11 @@ class BodyApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_echo_body_pet_response_string(self, pet : Annotated[Optional[Pet], Field(description="Pet object that needs to be added to the store")] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_echo_body_pet_response_string(
|
||||
self,
|
||||
pet: Annotated[Optional[Pet], Field(description="Pet object that needs to be added to the store")] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test empty response body # noqa: E501
|
||||
|
||||
Test empty response body # noqa: E501
|
||||
@@ -806,7 +848,11 @@ class BodyApi:
|
||||
return self.test_echo_body_pet_response_string_with_http_info(pet, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_echo_body_pet_response_string_with_http_info(self, pet : Annotated[Optional[Pet], Field(description="Pet object that needs to be added to the store")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_echo_body_pet_response_string_with_http_info(
|
||||
self,
|
||||
pet: Annotated[Optional[Pet], Field(description="Pet object that needs to be added to the store")] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test empty response body # noqa: E501
|
||||
|
||||
Test empty response body # noqa: E501
|
||||
@@ -923,7 +969,11 @@ class BodyApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_echo_body_tag_response_string(self, tag : Annotated[Optional[Tag], Field(description="Tag object")] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_echo_body_tag_response_string(
|
||||
self,
|
||||
tag: Annotated[Optional[Tag], Field(description="Tag object")] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test empty json (request body) # noqa: E501
|
||||
|
||||
Test empty json (request body) # noqa: E501
|
||||
@@ -953,7 +1003,11 @@ class BodyApi:
|
||||
return self.test_echo_body_tag_response_string_with_http_info(tag, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_echo_body_tag_response_string_with_http_info(self, tag : Annotated[Optional[Tag], Field(description="Tag object")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_echo_body_tag_response_string_with_http_info(
|
||||
self,
|
||||
tag: Annotated[Optional[Tag], Field(description="Tag object")] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test empty json (request body) # noqa: E501
|
||||
|
||||
Test empty json (request body) # noqa: E501
|
||||
|
||||
@@ -46,7 +46,13 @@ class FormApi:
|
||||
self.api_client = api_client
|
||||
|
||||
@validate_call
|
||||
def test_form_integer_boolean_string(self, integer_form : Optional[StrictInt] = None, boolean_form : Optional[StrictBool] = None, string_form : Optional[StrictStr] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_form_integer_boolean_string(
|
||||
self,
|
||||
integer_form: Optional[StrictInt] = None,
|
||||
boolean_form: Optional[StrictBool] = None,
|
||||
string_form: Optional[StrictStr] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test form parameter(s) # noqa: E501
|
||||
|
||||
Test form parameter(s) # noqa: E501
|
||||
@@ -80,7 +86,13 @@ class FormApi:
|
||||
return self.test_form_integer_boolean_string_with_http_info(integer_form, boolean_form, string_form, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_form_integer_boolean_string_with_http_info(self, integer_form : Optional[StrictInt] = None, boolean_form : Optional[StrictBool] = None, string_form : Optional[StrictStr] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_form_integer_boolean_string_with_http_info(
|
||||
self,
|
||||
integer_form: Optional[StrictInt] = None,
|
||||
boolean_form: Optional[StrictBool] = None,
|
||||
string_form: Optional[StrictStr] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test form parameter(s) # noqa: E501
|
||||
|
||||
Test form parameter(s) # noqa: E501
|
||||
@@ -209,7 +221,16 @@ class FormApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_form_oneof(self, form1 : Optional[StrictStr] = None, form2 : Optional[StrictInt] = None, form3 : Optional[StrictStr] = None, form4 : Optional[StrictBool] = None, id : Optional[StrictInt] = None, name : Optional[StrictStr] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_form_oneof(
|
||||
self,
|
||||
form1: Optional[StrictStr] = None,
|
||||
form2: Optional[StrictInt] = None,
|
||||
form3: Optional[StrictStr] = None,
|
||||
form4: Optional[StrictBool] = None,
|
||||
id: Optional[StrictInt] = None,
|
||||
name: Optional[StrictStr] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test form parameter(s) for oneOf schema # noqa: E501
|
||||
|
||||
Test form parameter(s) for oneOf schema # noqa: E501
|
||||
@@ -249,7 +270,16 @@ class FormApi:
|
||||
return self.test_form_oneof_with_http_info(form1, form2, form3, form4, id, name, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_form_oneof_with_http_info(self, form1 : Optional[StrictStr] = None, form2 : Optional[StrictInt] = None, form3 : Optional[StrictStr] = None, form4 : Optional[StrictBool] = None, id : Optional[StrictInt] = None, name : Optional[StrictStr] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_form_oneof_with_http_info(
|
||||
self,
|
||||
form1: Optional[StrictStr] = None,
|
||||
form2: Optional[StrictInt] = None,
|
||||
form3: Optional[StrictStr] = None,
|
||||
form4: Optional[StrictBool] = None,
|
||||
id: Optional[StrictInt] = None,
|
||||
name: Optional[StrictStr] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test form parameter(s) for oneOf schema # noqa: E501
|
||||
|
||||
Test form parameter(s) for oneOf schema # noqa: E501
|
||||
|
||||
@@ -47,7 +47,15 @@ class HeaderApi:
|
||||
self.api_client = api_client
|
||||
|
||||
@validate_call
|
||||
def test_header_integer_boolean_string_enums(self, integer_header : Optional[StrictInt] = None, boolean_header : Optional[StrictBool] = None, string_header : Optional[StrictStr] = None, enum_nonref_string_header : Optional[StrictStr] = None, enum_ref_string_header : Optional[StringEnumRef] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_header_integer_boolean_string_enums(
|
||||
self,
|
||||
integer_header: Optional[StrictInt] = None,
|
||||
boolean_header: Optional[StrictBool] = None,
|
||||
string_header: Optional[StrictStr] = None,
|
||||
enum_nonref_string_header: Optional[StrictStr] = None,
|
||||
enum_ref_string_header: Optional[StringEnumRef] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test header parameter(s) # noqa: E501
|
||||
|
||||
Test header parameter(s) # noqa: E501
|
||||
@@ -85,7 +93,15 @@ class HeaderApi:
|
||||
return self.test_header_integer_boolean_string_enums_with_http_info(integer_header, boolean_header, string_header, enum_nonref_string_header, enum_ref_string_header, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_header_integer_boolean_string_enums_with_http_info(self, integer_header : Optional[StrictInt] = None, boolean_header : Optional[StrictBool] = None, string_header : Optional[StrictStr] = None, enum_nonref_string_header : Optional[StrictStr] = None, enum_ref_string_header : Optional[StringEnumRef] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_header_integer_boolean_string_enums_with_http_info(
|
||||
self,
|
||||
integer_header: Optional[StrictInt] = None,
|
||||
boolean_header: Optional[StrictBool] = None,
|
||||
string_header: Optional[StrictStr] = None,
|
||||
enum_nonref_string_header: Optional[StrictStr] = None,
|
||||
enum_ref_string_header: Optional[StringEnumRef] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test header parameter(s) # noqa: E501
|
||||
|
||||
Test header parameter(s) # noqa: E501
|
||||
|
||||
@@ -45,7 +45,14 @@ class PathApi:
|
||||
self.api_client = api_client
|
||||
|
||||
@validate_call
|
||||
def tests_path_string_path_string_integer_path_integer_enum_nonref_string_path_enum_ref_string_path(self, path_string : StrictStr, path_integer : StrictInt, enum_nonref_string_path : StrictStr, enum_ref_string_path : StringEnumRef, **kwargs) -> str: # noqa: E501
|
||||
def tests_path_string_path_string_integer_path_integer_enum_nonref_string_path_enum_ref_string_path(
|
||||
self,
|
||||
path_string: StrictStr,
|
||||
path_integer: StrictInt,
|
||||
enum_nonref_string_path: StrictStr,
|
||||
enum_ref_string_path: StringEnumRef,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test path parameter(s) # noqa: E501
|
||||
|
||||
Test path parameter(s) # noqa: E501
|
||||
@@ -81,7 +88,14 @@ class PathApi:
|
||||
return self.tests_path_string_path_string_integer_path_integer_enum_nonref_string_path_enum_ref_string_path_with_http_info(path_string, path_integer, enum_nonref_string_path, enum_ref_string_path, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def tests_path_string_path_string_integer_path_integer_enum_nonref_string_path_enum_ref_string_path_with_http_info(self, path_string : StrictStr, path_integer : StrictInt, enum_nonref_string_path : StrictStr, enum_ref_string_path : StringEnumRef, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def tests_path_string_path_string_integer_path_integer_enum_nonref_string_path_enum_ref_string_path_with_http_info(
|
||||
self,
|
||||
path_string: StrictStr,
|
||||
path_integer: StrictInt,
|
||||
enum_nonref_string_path: StrictStr,
|
||||
enum_ref_string_path: StringEnumRef,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test path parameter(s) # noqa: E501
|
||||
|
||||
Test path parameter(s) # noqa: E501
|
||||
|
||||
@@ -51,7 +51,12 @@ class QueryApi:
|
||||
self.api_client = api_client
|
||||
|
||||
@validate_call
|
||||
def test_enum_ref_string(self, enum_nonref_string_query : Optional[StrictStr] = None, enum_ref_string_query : Optional[StringEnumRef] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_enum_ref_string(
|
||||
self,
|
||||
enum_nonref_string_query: Optional[StrictStr] = None,
|
||||
enum_ref_string_query: Optional[StringEnumRef] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -83,7 +88,12 @@ class QueryApi:
|
||||
return self.test_enum_ref_string_with_http_info(enum_nonref_string_query, enum_ref_string_query, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_enum_ref_string_with_http_info(self, enum_nonref_string_query : Optional[StrictStr] = None, enum_ref_string_query : Optional[StringEnumRef] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_enum_ref_string_with_http_info(
|
||||
self,
|
||||
enum_nonref_string_query: Optional[StrictStr] = None,
|
||||
enum_ref_string_query: Optional[StringEnumRef] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -199,7 +209,13 @@ class QueryApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_query_datetime_date_string(self, datetime_query : Optional[datetime] = None, date_query : Optional[date] = None, string_query : Optional[StrictStr] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_query_datetime_date_string(
|
||||
self,
|
||||
datetime_query: Optional[datetime] = None,
|
||||
date_query: Optional[date] = None,
|
||||
string_query: Optional[StrictStr] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -233,7 +249,13 @@ class QueryApi:
|
||||
return self.test_query_datetime_date_string_with_http_info(datetime_query, date_query, string_query, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_query_datetime_date_string_with_http_info(self, datetime_query : Optional[datetime] = None, date_query : Optional[date] = None, string_query : Optional[StrictStr] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_query_datetime_date_string_with_http_info(
|
||||
self,
|
||||
datetime_query: Optional[datetime] = None,
|
||||
date_query: Optional[date] = None,
|
||||
string_query: Optional[StrictStr] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -361,7 +383,13 @@ class QueryApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_query_integer_boolean_string(self, integer_query : Optional[StrictInt] = None, boolean_query : Optional[StrictBool] = None, string_query : Optional[StrictStr] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_query_integer_boolean_string(
|
||||
self,
|
||||
integer_query: Optional[StrictInt] = None,
|
||||
boolean_query: Optional[StrictBool] = None,
|
||||
string_query: Optional[StrictStr] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -395,7 +423,13 @@ class QueryApi:
|
||||
return self.test_query_integer_boolean_string_with_http_info(integer_query, boolean_query, string_query, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_query_integer_boolean_string_with_http_info(self, integer_query : Optional[StrictInt] = None, boolean_query : Optional[StrictBool] = None, string_query : Optional[StrictStr] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_query_integer_boolean_string_with_http_info(
|
||||
self,
|
||||
integer_query: Optional[StrictInt] = None,
|
||||
boolean_query: Optional[StrictBool] = None,
|
||||
string_query: Optional[StrictStr] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -517,7 +551,11 @@ class QueryApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_query_style_deep_object_explode_true_object(self, query_object : Optional[Pet] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_query_style_deep_object_explode_true_object(
|
||||
self,
|
||||
query_object: Optional[Pet] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -547,7 +585,11 @@ class QueryApi:
|
||||
return self.test_query_style_deep_object_explode_true_object_with_http_info(query_object, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_query_style_deep_object_explode_true_object_with_http_info(self, query_object : Optional[Pet] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_query_style_deep_object_explode_true_object_with_http_info(
|
||||
self,
|
||||
query_object: Optional[Pet] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -657,7 +699,11 @@ class QueryApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_query_style_deep_object_explode_true_object_all_of(self, query_object : Optional[Any] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_query_style_deep_object_explode_true_object_all_of(
|
||||
self,
|
||||
query_object: Optional[Any] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -687,7 +733,11 @@ class QueryApi:
|
||||
return self.test_query_style_deep_object_explode_true_object_all_of_with_http_info(query_object, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_query_style_deep_object_explode_true_object_all_of_with_http_info(self, query_object : Optional[Any] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_query_style_deep_object_explode_true_object_all_of_with_http_info(
|
||||
self,
|
||||
query_object: Optional[Any] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -797,7 +847,11 @@ class QueryApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_query_style_form_explode_true_array_string(self, query_object : Optional[TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_query_style_form_explode_true_array_string(
|
||||
self,
|
||||
query_object: Optional[TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -827,7 +881,11 @@ class QueryApi:
|
||||
return self.test_query_style_form_explode_true_array_string_with_http_info(query_object, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_query_style_form_explode_true_array_string_with_http_info(self, query_object : Optional[TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_query_style_form_explode_true_array_string_with_http_info(
|
||||
self,
|
||||
query_object: Optional[TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -937,7 +995,11 @@ class QueryApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_query_style_form_explode_true_object(self, query_object : Optional[Pet] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_query_style_form_explode_true_object(
|
||||
self,
|
||||
query_object: Optional[Pet] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -967,7 +1029,11 @@ class QueryApi:
|
||||
return self.test_query_style_form_explode_true_object_with_http_info(query_object, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_query_style_form_explode_true_object_with_http_info(self, query_object : Optional[Pet] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_query_style_form_explode_true_object_with_http_info(
|
||||
self,
|
||||
query_object: Optional[Pet] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -1077,7 +1143,11 @@ class QueryApi:
|
||||
_request_auth=_params.get('_request_auth'))
|
||||
|
||||
@validate_call
|
||||
def test_query_style_form_explode_true_object_all_of(self, query_object : Optional[Any] = None, **kwargs) -> str: # noqa: E501
|
||||
def test_query_style_form_explode_true_object_all_of(
|
||||
self,
|
||||
query_object: Optional[Any] = None,
|
||||
**kwargs,
|
||||
) -> str:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
@@ -1107,7 +1177,11 @@ class QueryApi:
|
||||
return self.test_query_style_form_explode_true_object_all_of_with_http_info(query_object, **kwargs) # noqa: E501
|
||||
|
||||
@validate_call
|
||||
def test_query_style_form_explode_true_object_all_of_with_http_info(self, query_object : Optional[Any] = None, **kwargs) -> ApiResponse: # noqa: E501
|
||||
def test_query_style_form_explode_true_object_all_of_with_http_info(
|
||||
self,
|
||||
query_object: Optional[Any] = None,
|
||||
**kwargs,
|
||||
) -> ApiResponse:
|
||||
"""Test query parameter(s) # noqa: E501
|
||||
|
||||
Test query parameter(s) # noqa: E501
|
||||
|
||||
Reference in New Issue
Block a user