diff options
Diffstat (limited to 'python/fatcat_client/models/container_entity.py')
-rw-r--r-- | python/fatcat_client/models/container_entity.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/fatcat_client/models/container_entity.py b/python/fatcat_client/models/container_entity.py index 969c046d..967b6de0 100644 --- a/python/fatcat_client/models/container_entity.py +++ b/python/fatcat_client/models/container_entity.py @@ -37,9 +37,9 @@ class ContainerEntity(object): 'publisher': 'str', 'name': 'str', 'extra': 'object', - 'editgroup_id': 'int', + 'editgroup_id': 'str', 'redirect': 'str', - 'revision': 'int', + 'revision': 'str', 'ident': 'str', 'state': 'str' } @@ -230,7 +230,7 @@ class ContainerEntity(object): :return: The editgroup_id of this ContainerEntity. # noqa: E501 - :rtype: int + :rtype: str """ return self._editgroup_id @@ -240,7 +240,7 @@ class ContainerEntity(object): :param editgroup_id: The editgroup_id of this ContainerEntity. # noqa: E501 - :type: int + :type: str """ self._editgroup_id = editgroup_id @@ -272,7 +272,7 @@ class ContainerEntity(object): :return: The revision of this ContainerEntity. # noqa: E501 - :rtype: int + :rtype: str """ return self._revision @@ -282,7 +282,7 @@ class ContainerEntity(object): :param revision: The revision of this ContainerEntity. # noqa: E501 - :type: int + :type: str """ self._revision = revision |