@@ -424,14 +424,14 @@ def __new__(
424
424
425
425
426
426
@dataclass
427
- class ApiResponseFor400 (api_client .ApiResponse ):
427
+ class ApiResponseFor200 (api_client .ApiResponse ):
428
428
response : urllib3 .HTTPResponse
429
429
body : schemas .Unset = schemas .unset
430
430
headers : schemas .Unset = schemas .unset
431
431
432
432
433
- _response_for_400 = api_client .OpenApiResponse (
434
- response_cls = ApiResponseFor400 ,
433
+ _response_for_200 = api_client .OpenApiResponse (
434
+ response_cls = ApiResponseFor200 ,
435
435
)
436
436
437
437
@@ -446,7 +446,7 @@ class ApiResponseFor404(api_client.ApiResponse):
446
446
response_cls = ApiResponseFor404 ,
447
447
)
448
448
_status_code_to_response = {
449
- '400 ' : _response_for_400 ,
449
+ '200 ' : _response_for_200 ,
450
450
'404' : _response_for_404 ,
451
451
}
452
452
@@ -464,6 +464,7 @@ def _enum_parameters_oapg(
464
464
timeout : typing .Optional [typing .Union [int , typing .Tuple ]] = None ,
465
465
skip_deserialization : typing_extensions .Literal [False ] = False ,
466
466
) -> typing .Union [
467
+ ApiResponseFor200 ,
467
468
]: ...
468
469
469
470
@typing .overload
@@ -489,6 +490,7 @@ def _enum_parameters_oapg(
489
490
timeout : typing .Optional [typing .Union [int , typing .Tuple ]] = None ,
490
491
skip_deserialization : bool = False ,
491
492
) -> typing .Union [
493
+ ApiResponseFor200 ,
492
494
api_client .ApiResponseWithoutDeserialization ,
493
495
]: ...
494
496
@@ -588,6 +590,7 @@ def enum_parameters(
588
590
timeout : typing .Optional [typing .Union [int , typing .Tuple ]] = None ,
589
591
skip_deserialization : typing_extensions .Literal [False ] = False ,
590
592
) -> typing .Union [
593
+ ApiResponseFor200 ,
591
594
]: ...
592
595
593
596
@typing .overload
@@ -613,6 +616,7 @@ def enum_parameters(
613
616
timeout : typing .Optional [typing .Union [int , typing .Tuple ]] = None ,
614
617
skip_deserialization : bool = False ,
615
618
) -> typing .Union [
619
+ ApiResponseFor200 ,
616
620
api_client .ApiResponseWithoutDeserialization ,
617
621
]: ...
618
622
@@ -651,6 +655,7 @@ def get(
651
655
timeout : typing .Optional [typing .Union [int , typing .Tuple ]] = None ,
652
656
skip_deserialization : typing_extensions .Literal [False ] = False ,
653
657
) -> typing .Union [
658
+ ApiResponseFor200 ,
654
659
]: ...
655
660
656
661
@typing .overload
@@ -676,6 +681,7 @@ def get(
676
681
timeout : typing .Optional [typing .Union [int , typing .Tuple ]] = None ,
677
682
skip_deserialization : bool = False ,
678
683
) -> typing .Union [
684
+ ApiResponseFor200 ,
679
685
api_client .ApiResponseWithoutDeserialization ,
680
686
]: ...
681
687
0 commit comments