1717from typing import Any , Dict , List , Optional , Tuple , Union
1818from typing_extensions import Annotated
1919
20- from pydantic import StrictStr
2120from typing import Optional
21+ from uuid import UUID
2222from mosquito_alert .models .patched_user_request import PatchedUserRequest
2323from mosquito_alert .models .user import User
2424from mosquito_alert .models .user_request import UserRequest
@@ -44,7 +44,7 @@ def __init__(self, api_client=None) -> None:
4444 @validate_call
4545 def partial_update (
4646 self ,
47- uuid : StrictStr ,
47+ uuid : UUID ,
4848 patched_user_request : Optional [PatchedUserRequest ] = None ,
4949 _request_timeout : Union [
5050 None ,
@@ -118,7 +118,7 @@ def partial_update(
118118 @validate_call
119119 def partial_update_with_http_info (
120120 self ,
121- uuid : StrictStr ,
121+ uuid : UUID ,
122122 patched_user_request : Optional [PatchedUserRequest ] = None ,
123123 _request_timeout : Union [
124124 None ,
@@ -192,7 +192,7 @@ def partial_update_with_http_info(
192192 @validate_call
193193 def partial_update_without_preload_content (
194194 self ,
195- uuid : StrictStr ,
195+ uuid : UUID ,
196196 patched_user_request : Optional [PatchedUserRequest ] = None ,
197197 _request_timeout : Union [
198198 None ,
@@ -346,7 +346,7 @@ def _partial_update_serialize(
346346 @validate_call
347347 def retrieve (
348348 self ,
349- uuid : StrictStr ,
349+ uuid : UUID ,
350350 _request_timeout : Union [
351351 None ,
352352 Annotated [StrictFloat , Field (gt = 0 )],
@@ -415,7 +415,7 @@ def retrieve(
415415 @validate_call
416416 def retrieve_with_http_info (
417417 self ,
418- uuid : StrictStr ,
418+ uuid : UUID ,
419419 _request_timeout : Union [
420420 None ,
421421 Annotated [StrictFloat , Field (gt = 0 )],
@@ -484,7 +484,7 @@ def retrieve_with_http_info(
484484 @validate_call
485485 def retrieve_without_preload_content (
486486 self ,
487- uuid : StrictStr ,
487+ uuid : UUID ,
488488 _request_timeout : Union [
489489 None ,
490490 Annotated [StrictFloat , Field (gt = 0 )],
@@ -872,7 +872,7 @@ def _retrieve_mine_serialize(
872872 @validate_call
873873 def update (
874874 self ,
875- uuid : StrictStr ,
875+ uuid : UUID ,
876876 user_request : Optional [UserRequest ] = None ,
877877 _request_timeout : Union [
878878 None ,
@@ -946,7 +946,7 @@ def update(
946946 @validate_call
947947 def update_with_http_info (
948948 self ,
949- uuid : StrictStr ,
949+ uuid : UUID ,
950950 user_request : Optional [UserRequest ] = None ,
951951 _request_timeout : Union [
952952 None ,
@@ -1020,7 +1020,7 @@ def update_with_http_info(
10201020 @validate_call
10211021 def update_without_preload_content (
10221022 self ,
1023- uuid : StrictStr ,
1023+ uuid : UUID ,
10241024 user_request : Optional [UserRequest ] = None ,
10251025 _request_timeout : Union [
10261026 None ,
0 commit comments