aboutsummaryrefslogtreecommitdiffstats
path: root/python_openapi_client/fatcat_openapi_client/models/auth_oidc.pyi
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-11-17 16:09:45 -0800
committerBryan Newbold <bnewbold@robocracy.org>2021-11-23 17:39:02 -0800
commit16e0a5cef642f1d180354fa1da9ea568ebdd3946 (patch)
treebc8453823e2398bc586719f7edee8e47d49b00fc /python_openapi_client/fatcat_openapi_client/models/auth_oidc.pyi
parent82ee0c7d967e2ff40270a8435ea292b41e22fa17 (diff)
downloadfatcat-16e0a5cef642f1d180354fa1da9ea568ebdd3946.tar.gz
fatcat-16e0a5cef642f1d180354fa1da9ea568ebdd3946.zip
WIP: more python client type annotations
Diffstat (limited to 'python_openapi_client/fatcat_openapi_client/models/auth_oidc.pyi')
-rw-r--r--python_openapi_client/fatcat_openapi_client/models/auth_oidc.pyi27
1 files changed, 27 insertions, 0 deletions
diff --git a/python_openapi_client/fatcat_openapi_client/models/auth_oidc.pyi b/python_openapi_client/fatcat_openapi_client/models/auth_oidc.pyi
new file mode 100644
index 00000000..a404ce2d
--- /dev/null
+++ b/python_openapi_client/fatcat_openapi_client/models/auth_oidc.pyi
@@ -0,0 +1,27 @@
+from typing import Any
+
+class AuthOidc:
+ openapi_types: Any
+ attribute_map: Any
+ discriminator: Any
+ def __init__(self, provider: Any | None = ..., sub: Any | None = ..., iss: Any | None = ..., preferred_username: Any | None = ...) -> None: ...
+ @property
+ def provider(self): ...
+ @provider.setter
+ def provider(self, provider) -> None: ...
+ @property
+ def sub(self): ...
+ @sub.setter
+ def sub(self, sub) -> None: ...
+ @property
+ def iss(self): ...
+ @iss.setter
+ def iss(self, iss) -> None: ...
+ @property
+ def preferred_username(self): ...
+ @preferred_username.setter
+ def preferred_username(self, preferred_username) -> None: ...
+ def to_dict(self): ...
+ def to_str(self): ...
+ def __eq__(self, other): ...
+ def __ne__(self, other): ...