aboutsummaryrefslogtreecommitdiffstats
path: root/python_client/fatcat_client/models/fileset_entity.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-05-14 13:42:48 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-05-14 13:42:48 -0700
commit3ee54189b665d37933b6108fb85b28bb823dac4a (patch)
tree354f40d0d3258ea30c811cfb200ccb231c013107 /python_client/fatcat_client/models/fileset_entity.py
parent1337f7ae5c27983c732dd86bf1f11c04918eee62 (diff)
downloadfatcat-3ee54189b665d37933b6108fb85b28bb823dac4a.tar.gz
fatcat-3ee54189b665d37933b6108fb85b28bb823dac4a.zip
python codegen
Diffstat (limited to 'python_client/fatcat_client/models/fileset_entity.py')
-rw-r--r--python_client/fatcat_client/models/fileset_entity.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/python_client/fatcat_client/models/fileset_entity.py b/python_client/fatcat_client/models/fileset_entity.py
index 570d9a13..d4a46a81 100644
--- a/python_client/fatcat_client/models/fileset_entity.py
+++ b/python_client/fatcat_client/models/fileset_entity.py
@@ -16,8 +16,8 @@ import re # noqa: F401
import six
-from fatcat_client.models.file_entity_urls import FileEntityUrls # noqa: F401,E501
-from fatcat_client.models.fileset_entity_manifest import FilesetEntityManifest # noqa: F401,E501
+from fatcat_client.models.fileset_file import FilesetFile # noqa: F401,E501
+from fatcat_client.models.fileset_url import FilesetUrl # noqa: F401,E501
class FilesetEntity(object):
@@ -35,8 +35,8 @@ class FilesetEntity(object):
"""
swagger_types = {
'release_ids': 'list[str]',
- 'urls': 'list[FileEntityUrls]',
- 'manifest': 'list[FilesetEntityManifest]',
+ 'urls': 'list[FilesetUrl]',
+ 'manifest': 'list[FilesetFile]',
'state': 'str',
'ident': 'str',
'revision': 'str',
@@ -117,7 +117,7 @@ class FilesetEntity(object):
:return: The urls of this FilesetEntity. # noqa: E501
- :rtype: list[FileEntityUrls]
+ :rtype: list[FilesetUrl]
"""
return self._urls
@@ -127,7 +127,7 @@ class FilesetEntity(object):
:param urls: The urls of this FilesetEntity. # noqa: E501
- :type: list[FileEntityUrls]
+ :type: list[FilesetUrl]
"""
self._urls = urls
@@ -138,7 +138,7 @@ class FilesetEntity(object):
:return: The manifest of this FilesetEntity. # noqa: E501
- :rtype: list[FilesetEntityManifest]
+ :rtype: list[FilesetFile]
"""
return self._manifest
@@ -148,7 +148,7 @@ class FilesetEntity(object):
:param manifest: The manifest of this FilesetEntity. # noqa: E501
- :type: list[FilesetEntityManifest]
+ :type: list[FilesetFile]
"""
self._manifest = manifest