@@ -32,40 +32,40 @@ class {{classname}}:
3232
3333
3434 @validate_call
35- { {#asyncio } }async { {/asyncio } }def { {operationId} }{ {> partial_api_args} } -> { {{returnType} }}{ {^returnType} }None{ {/returnType} }:
35+ { {#async } }async { {/async } }def { {operationId} }{ {> partial_api_args} } -> { {{returnType} }}{ {^returnType} }None{ {/returnType} }:
3636{ {> partial_api} }
3737
38- response_data = { {#asyncio } }await { {/asyncio } }self.api_client.call_api(
38+ response_data = { {#async } }await { {/async } }self.api_client.call_api(
3939 *_param,
4040 _request_timeout=_request_timeout
4141 )
42- { {#asyncio } }await { {/asyncio } }response_data.read()
42+ { {#async } }await { {/async } }response_data.read()
4343 return self.api_client.response_deserialize(
4444 response_data=response_data,
4545 response_types_map=_response_types_map,
4646 ).data
4747
4848
4949 @validate_call
50- { {#asyncio } }async { {/asyncio } }def { {operationId} }_with_http_info{ {> partial_api_args} } -> ApiResponse[{ {{returnType} }}{ {^returnType} }None{ {/returnType} }]:
50+ { {#async } }async { {/async } }def { {operationId} }_with_http_info{ {> partial_api_args} } -> ApiResponse[{ {{returnType} }}{ {^returnType} }None{ {/returnType} }]:
5151{ {> partial_api} }
5252
53- response_data = { {#asyncio } }await { {/asyncio } }self.api_client.call_api(
53+ response_data = { {#async } }await { {/async } }self.api_client.call_api(
5454 *_param,
5555 _request_timeout=_request_timeout
5656 )
57- { {#asyncio } }await { {/asyncio } }response_data.read()
57+ { {#async } }await { {/async } }response_data.read()
5858 return self.api_client.response_deserialize(
5959 response_data=response_data,
6060 response_types_map=_response_types_map,
6161 )
6262
6363
6464 @validate_call
65- { {#asyncio } }async { {/asyncio } }def { {operationId} }_without_preload_content{ {> partial_api_args} } -> RESTResponseType:
65+ { {#async } }async { {/async } }def { {operationId} }_without_preload_content{ {> partial_api_args} } -> RESTResponseType:
6666{ {> partial_api} }
6767
68- response_data = { {#asyncio } }await { {/asyncio } }self.api_client.call_api(
68+ response_data = { {#async } }await { {/async } }self.api_client.call_api(
6969 *_param,
7070 _request_timeout=_request_timeout
7171 )
0 commit comments