aboutsummaryrefslogtreecommitdiffstats
path: root/python_client/fatcat_client/models/release_ref.py
diff options
context:
space:
mode:
Diffstat (limited to 'python_client/fatcat_client/models/release_ref.py')
-rw-r--r--python_client/fatcat_client/models/release_ref.py302
1 files changed, 0 insertions, 302 deletions
diff --git a/python_client/fatcat_client/models/release_ref.py b/python_client/fatcat_client/models/release_ref.py
deleted file mode 100644
index ed44158b..00000000
--- a/python_client/fatcat_client/models/release_ref.py
+++ /dev/null
@@ -1,302 +0,0 @@
-# coding: utf-8
-
-"""
- fatcat
-
- A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501
-
- OpenAPI spec version: 0.3.0
-
- Generated by: https://github.com/swagger-api/swagger-codegen.git
-"""
-
-
-import pprint
-import re # noqa: F401
-
-import six
-
-
-class ReleaseRef(object):
- """NOTE: This class is auto generated by the swagger code generator program.
-
- Do not edit the class manually.
- """
-
- """
- Attributes:
- swagger_types (dict): The key is attribute name
- and the value is attribute type.
- attribute_map (dict): The key is attribute name
- and the value is json key in definition.
- """
- swagger_types = {
- 'index': 'int',
- 'target_release_id': 'str',
- 'extra': 'object',
- 'key': 'str',
- 'year': 'int',
- 'container_name': 'str',
- 'title': 'str',
- 'locator': 'str'
- }
-
- attribute_map = {
- 'index': 'index',
- 'target_release_id': 'target_release_id',
- 'extra': 'extra',
- 'key': 'key',
- 'year': 'year',
- 'container_name': 'container_name',
- 'title': 'title',
- 'locator': 'locator'
- }
-
- def __init__(self, index=None, target_release_id=None, extra=None, key=None, year=None, container_name=None, title=None, locator=None): # noqa: E501
- """ReleaseRef - a model defined in Swagger""" # noqa: E501
-
- self._index = None
- self._target_release_id = None
- self._extra = None
- self._key = None
- self._year = None
- self._container_name = None
- self._title = None
- self._locator = None
- self.discriminator = None
-
- if index is not None:
- self.index = index
- if target_release_id is not None:
- self.target_release_id = target_release_id
- if extra is not None:
- self.extra = extra
- if key is not None:
- self.key = key
- if year is not None:
- self.year = year
- if container_name is not None:
- self.container_name = container_name
- if title is not None:
- self.title = title
- if locator is not None:
- self.locator = locator
-
- @property
- def index(self):
- """Gets the index of this ReleaseRef. # noqa: E501
-
-
- :return: The index of this ReleaseRef. # noqa: E501
- :rtype: int
- """
- return self._index
-
- @index.setter
- def index(self, index):
- """Sets the index of this ReleaseRef.
-
-
- :param index: The index of this ReleaseRef. # noqa: E501
- :type: int
- """
-
- self._index = index
-
- @property
- def target_release_id(self):
- """Gets the target_release_id of this ReleaseRef. # noqa: E501
-
- base32-encoded unique identifier # noqa: E501
-
- :return: The target_release_id of this ReleaseRef. # noqa: E501
- :rtype: str
- """
- return self._target_release_id
-
- @target_release_id.setter
- def target_release_id(self, target_release_id):
- """Sets the target_release_id of this ReleaseRef.
-
- base32-encoded unique identifier # noqa: E501
-
- :param target_release_id: The target_release_id of this ReleaseRef. # noqa: E501
- :type: str
- """
- if target_release_id is not None and len(target_release_id) > 26:
- raise ValueError("Invalid value for `target_release_id`, length must be less than or equal to `26`") # noqa: E501
- if target_release_id is not None and len(target_release_id) < 26:
- raise ValueError("Invalid value for `target_release_id`, length must be greater than or equal to `26`") # noqa: E501
- if target_release_id is not None and not re.search('[a-zA-Z2-7]{26}', target_release_id): # noqa: E501
- raise ValueError("Invalid value for `target_release_id`, must be a follow pattern or equal to `/[a-zA-Z2-7]{26}/`") # noqa: E501
-
- self._target_release_id = target_release_id
-
- @property
- def extra(self):
- """Gets the extra of this ReleaseRef. # noqa: E501
-
-
- :return: The extra of this ReleaseRef. # noqa: E501
- :rtype: object
- """
- return self._extra
-
- @extra.setter
- def extra(self, extra):
- """Sets the extra of this ReleaseRef.
-
-
- :param extra: The extra of this ReleaseRef. # noqa: E501
- :type: object
- """
-
- self._extra = extra
-
- @property
- def key(self):
- """Gets the key of this ReleaseRef. # noqa: E501
-
-
- :return: The key of this ReleaseRef. # noqa: E501
- :rtype: str
- """
- return self._key
-
- @key.setter
- def key(self, key):
- """Sets the key of this ReleaseRef.
-
-
- :param key: The key of this ReleaseRef. # noqa: E501
- :type: str
- """
-
- self._key = key
-
- @property
- def year(self):
- """Gets the year of this ReleaseRef. # noqa: E501
-
-
- :return: The year of this ReleaseRef. # noqa: E501
- :rtype: int
- """
- return self._year
-
- @year.setter
- def year(self, year):
- """Sets the year of this ReleaseRef.
-
-
- :param year: The year of this ReleaseRef. # noqa: E501
- :type: int
- """
-
- self._year = year
-
- @property
- def container_name(self):
- """Gets the container_name of this ReleaseRef. # noqa: E501
-
-
- :return: The container_name of this ReleaseRef. # noqa: E501
- :rtype: str
- """
- return self._container_name
-
- @container_name.setter
- def container_name(self, container_name):
- """Sets the container_name of this ReleaseRef.
-
-
- :param container_name: The container_name of this ReleaseRef. # noqa: E501
- :type: str
- """
-
- self._container_name = container_name
-
- @property
- def title(self):
- """Gets the title of this ReleaseRef. # noqa: E501
-
-
- :return: The title of this ReleaseRef. # noqa: E501
- :rtype: str
- """
- return self._title
-
- @title.setter
- def title(self, title):
- """Sets the title of this ReleaseRef.
-
-
- :param title: The title of this ReleaseRef. # noqa: E501
- :type: str
- """
-
- self._title = title
-
- @property
- def locator(self):
- """Gets the locator of this ReleaseRef. # noqa: E501
-
-
- :return: The locator of this ReleaseRef. # noqa: E501
- :rtype: str
- """
- return self._locator
-
- @locator.setter
- def locator(self, locator):
- """Sets the locator of this ReleaseRef.
-
-
- :param locator: The locator of this ReleaseRef. # noqa: E501
- :type: str
- """
-
- self._locator = locator
-
- def to_dict(self):
- """Returns the model properties as a dict"""
- result = {}
-
- for attr, _ in six.iteritems(self.swagger_types):
- value = getattr(self, attr)
- if isinstance(value, list):
- result[attr] = list(map(
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
- value
- ))
- elif hasattr(value, "to_dict"):
- result[attr] = value.to_dict()
- elif isinstance(value, dict):
- result[attr] = dict(map(
- lambda item: (item[0], item[1].to_dict())
- if hasattr(item[1], "to_dict") else item,
- value.items()
- ))
- else:
- result[attr] = value
-
- return result
-
- def to_str(self):
- """Returns the string representation of the model"""
- return pprint.pformat(self.to_dict())
-
- def __repr__(self):
- """For `print` and `pprint`"""
- return self.to_str()
-
- def __eq__(self, other):
- """Returns true if both objects are equal"""
- if not isinstance(other, ReleaseRef):
- return False
-
- return self.__dict__ == other.__dict__
-
- def __ne__(self, other):
- """Returns true if both objects are not equal"""
- return not self == other