33import httpx
44
55from ...client import Client
6- from ...models .test_inline_objectsjson_body import TestInlineObjectsjsonBody
7- from ...models .test_inline_objectsresponse_200 import TestInlineObjectsresponse_200
6+ from ...models .test_inline_objects_json_body import TestInlineObjectsJsonBody
7+ from ...models .test_inline_objects_response_200 import TestInlineObjectsResponse_200
88from ...types import Response
99
1010
1111def _get_kwargs (
1212 * ,
1313 client : Client ,
14- json_body : TestInlineObjectsjsonBody ,
14+ json_body : TestInlineObjectsJsonBody ,
1515) -> Dict [str , Any ]:
1616 url = "{}/tests/inline_objects" .format (client .base_url )
1717
@@ -28,15 +28,15 @@ def _get_kwargs(
2828 }
2929
3030
31- def _parse_response (* , response : httpx .Response ) -> Optional [TestInlineObjectsresponse_200 ]:
31+ def _parse_response (* , response : httpx .Response ) -> Optional [TestInlineObjectsResponse_200 ]:
3232 if response .status_code == 200 :
33- response_200 = TestInlineObjectsresponse_200 .from_dict (response .json ())
33+ response_200 = TestInlineObjectsResponse_200 .from_dict (response .json ())
3434
3535 return response_200
3636 return None
3737
3838
39- def _build_response (* , response : httpx .Response ) -> Response [TestInlineObjectsresponse_200 ]:
39+ def _build_response (* , response : httpx .Response ) -> Response [TestInlineObjectsResponse_200 ]:
4040 return Response (
4141 status_code = response .status_code ,
4242 content = response .content ,
@@ -48,8 +48,8 @@ def _build_response(*, response: httpx.Response) -> Response[TestInlineObjectsre
4848def sync_detailed (
4949 * ,
5050 client : Client ,
51- json_body : TestInlineObjectsjsonBody ,
52- ) -> Response [TestInlineObjectsresponse_200 ]:
51+ json_body : TestInlineObjectsJsonBody ,
52+ ) -> Response [TestInlineObjectsResponse_200 ]:
5353 kwargs = _get_kwargs (
5454 client = client ,
5555 json_body = json_body ,
@@ -65,8 +65,8 @@ def sync_detailed(
6565def sync (
6666 * ,
6767 client : Client ,
68- json_body : TestInlineObjectsjsonBody ,
69- ) -> Optional [TestInlineObjectsresponse_200 ]:
68+ json_body : TestInlineObjectsJsonBody ,
69+ ) -> Optional [TestInlineObjectsResponse_200 ]:
7070 """ """
7171
7272 return sync_detailed (
@@ -78,8 +78,8 @@ def sync(
7878async def asyncio_detailed (
7979 * ,
8080 client : Client ,
81- json_body : TestInlineObjectsjsonBody ,
82- ) -> Response [TestInlineObjectsresponse_200 ]:
81+ json_body : TestInlineObjectsJsonBody ,
82+ ) -> Response [TestInlineObjectsResponse_200 ]:
8383 kwargs = _get_kwargs (
8484 client = client ,
8585 json_body = json_body ,
@@ -94,8 +94,8 @@ async def asyncio_detailed(
9494async def asyncio (
9595 * ,
9696 client : Client ,
97- json_body : TestInlineObjectsjsonBody ,
98- ) -> Optional [TestInlineObjectsresponse_200 ]:
97+ json_body : TestInlineObjectsJsonBody ,
98+ ) -> Optional [TestInlineObjectsResponse_200 ]:
9999 """ """
100100
101101 return (
0 commit comments