diff options
Diffstat (limited to 'python_openapi_client/fatcat_openapi_client/models/file_url.pyi')
-rw-r--r-- | python_openapi_client/fatcat_openapi_client/models/file_url.pyi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/python_openapi_client/fatcat_openapi_client/models/file_url.pyi b/python_openapi_client/fatcat_openapi_client/models/file_url.pyi new file mode 100644 index 00000000..116d632b --- /dev/null +++ b/python_openapi_client/fatcat_openapi_client/models/file_url.pyi @@ -0,0 +1,19 @@ +from typing import Any + +class FileUrl: + openapi_types: Any + attribute_map: Any + discriminator: Any + def __init__(self, url: Any | None = ..., rel: Any | None = ...) -> None: ... + @property + def url(self): ... + @url.setter + def url(self, url) -> None: ... + @property + def rel(self): ... + @rel.setter + def rel(self, rel) -> None: ... + def to_dict(self): ... + def to_str(self): ... + def __eq__(self, other): ... + def __ne__(self, other): ... |