diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-17 17:17:36 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-23 17:39:02 -0800 |
commit | 2352c07c7fa55859f4af936b45b2a319ca2d1560 (patch) | |
tree | 843afb671061dbd545c5fe369a2971846ecc31b9 /python_openapi_client/fatcat_openapi_client/models/work_entity.pyi | |
parent | f208054f6883589239f21d5e46545960c45ece18 (diff) | |
download | fatcat-2352c07c7fa55859f4af936b45b2a319ca2d1560.tar.gz fatcat-2352c07c7fa55859f4af936b45b2a319ca2d1560.zip |
more WIP on annotating models
Diffstat (limited to 'python_openapi_client/fatcat_openapi_client/models/work_entity.pyi')
-rw-r--r-- | python_openapi_client/fatcat_openapi_client/models/work_entity.pyi | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/python_openapi_client/fatcat_openapi_client/models/work_entity.pyi b/python_openapi_client/fatcat_openapi_client/models/work_entity.pyi index 41a36e61..86161281 100644 --- a/python_openapi_client/fatcat_openapi_client/models/work_entity.pyi +++ b/python_openapi_client/fatcat_openapi_client/models/work_entity.pyi @@ -1,34 +1,34 @@ -from typing import Any +from typing import Any, Optional, Dict, List class WorkEntity: openapi_types: Any attribute_map: Any discriminator: Any - def __init__(self, state: Any | None = ..., ident: Any | None = ..., revision: Any | None = ..., redirect: Any | None = ..., extra: Any | None = ..., edit_extra: Any | None = ...) -> None: ... + def __init__(self, state: Optional[str] = ..., ident: Optional[str] = ..., revision: Optional[str] = ..., redirect: Optional[str] = ..., extra: Optional[Dict[str, Any]] = ..., edit_extra: Optional[Dict[str, Any]] = ...) -> None: ... @property - def state(self): ... + def state(self) -> Optional[str]: ... @state.setter - def state(self, state) -> None: ... + def state(self, state: Optional[str]) -> None: ... @property - def ident(self): ... + def ident(self) -> Optional[str]: ... @ident.setter - def ident(self, ident) -> None: ... + def ident(self, ident: Optional[str]) -> None: ... @property - def revision(self): ... + def revision(self) -> Optional[str]: ... @revision.setter - def revision(self, revision) -> None: ... + def revision(self, revision: Optional[str]) -> None: ... @property - def redirect(self): ... + def redirect(self) -> Optional[str]: ... @redirect.setter - def redirect(self, redirect) -> None: ... + def redirect(self, redirect: Optional[str]) -> None: ... @property - def extra(self): ... + def extra(self) -> Optional[Dict[str, Any]]: ... @extra.setter - def extra(self, extra) -> None: ... + def extra(self, extra: Optional[Dict[str, Any]]) -> None: ... @property - def edit_extra(self): ... + def edit_extra(self) -> Optional[Dict[str, Any]]: ... @edit_extra.setter - def edit_extra(self, edit_extra) -> None: ... + def edit_extra(self, edit_extra: Optional[Dict[str, Any]]) -> None: ... def to_dict(self): ... def to_str(self): ... def __eq__(self, other): ... |