From 82ee0c7d967e2ff40270a8435ea292b41e22fa17 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 17 Nov 2021 16:08:43 -0800 Subject: python client: start adding type annotation stubs --- .../models/container_auto_batch.pyi | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 python_openapi_client/fatcat_openapi_client/models/container_auto_batch.pyi (limited to 'python_openapi_client/fatcat_openapi_client/models/container_auto_batch.pyi') diff --git a/python_openapi_client/fatcat_openapi_client/models/container_auto_batch.pyi b/python_openapi_client/fatcat_openapi_client/models/container_auto_batch.pyi new file mode 100644 index 00000000..bb197215 --- /dev/null +++ b/python_openapi_client/fatcat_openapi_client/models/container_auto_batch.pyi @@ -0,0 +1,19 @@ +from typing import Any + +class ContainerAutoBatch: + openapi_types: Any + attribute_map: Any + discriminator: Any + def __init__(self, editgroup: Editgroup = ..., entity_list: List[ContainerEntity] = ...) -> None: ... + @property + def editgroup(self) -> Editgroup: ... + @editgroup.setter + def editgroup(self, editgroup: Editgroup) -> None: ... + @property + def entity_list(self) -> List[ContainerEntity]: ... + @entity_list.setter + def entity_list(self, entity_list: List[ContainerEntity]) -> None: ... + def to_dict(self): ... + def to_str(self): ... + def __eq__(self, other): ... + def __ne__(self, other): ... -- cgit v1.2.3