From 16e0a5cef642f1d180354fa1da9ea568ebdd3946 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 17 Nov 2021 16:09:45 -0800 Subject: WIP: more python client type annotations --- .../models/release_abstract.pyi | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 python_openapi_client/fatcat_openapi_client/models/release_abstract.pyi (limited to 'python_openapi_client/fatcat_openapi_client/models/release_abstract.pyi') diff --git a/python_openapi_client/fatcat_openapi_client/models/release_abstract.pyi b/python_openapi_client/fatcat_openapi_client/models/release_abstract.pyi new file mode 100644 index 00000000..9012213c --- /dev/null +++ b/python_openapi_client/fatcat_openapi_client/models/release_abstract.pyi @@ -0,0 +1,27 @@ +from typing import Any + +class ReleaseAbstract: + openapi_types: Any + attribute_map: Any + discriminator: Any + def __init__(self, sha1: Any | None = ..., content: Any | None = ..., mimetype: Any | None = ..., lang: Any | None = ...) -> None: ... + @property + def sha1(self): ... + @sha1.setter + def sha1(self, sha1) -> None: ... + @property + def content(self): ... + @content.setter + def content(self, content) -> None: ... + @property + def mimetype(self): ... + @mimetype.setter + def mimetype(self, mimetype) -> None: ... + @property + def lang(self): ... + @lang.setter + def lang(self, lang) -> None: ... + def to_dict(self): ... + def to_str(self): ... + def __eq__(self, other): ... + def __ne__(self, other): ... -- cgit v1.2.3