diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-21 12:02:14 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-21 12:02:14 -0800 |
commit | 4c54f3bf32e0d0e9dbe52b22f911027a667c0e34 (patch) | |
tree | 3d62f87300a7d3ab3527842bd021fb14778d789a /python_client/fatcat_client/models/release_contrib.py | |
parent | fd2b76909c5ceae22d6634dd24a11025f6847b2d (diff) | |
download | fatcat-4c54f3bf32e0d0e9dbe52b22f911027a667c0e34.tar.gz fatcat-4c54f3bf32e0d0e9dbe52b22f911027a667c0e34.zip |
codegen
Diffstat (limited to 'python_client/fatcat_client/models/release_contrib.py')
-rw-r--r-- | python_client/fatcat_client/models/release_contrib.py | 84 |
1 files changed, 56 insertions, 28 deletions
diff --git a/python_client/fatcat_client/models/release_contrib.py b/python_client/fatcat_client/models/release_contrib.py index a06b0e66..e823e43e 100644 --- a/python_client/fatcat_client/models/release_contrib.py +++ b/python_client/fatcat_client/models/release_contrib.py @@ -37,8 +37,9 @@ class ReleaseContrib(object): 'creator_id': 'str', 'creator': 'CreatorEntity', 'raw_name': 'str', - 'extra': 'object', - 'role': 'str' + 'role': 'str', + 'raw_affiliation': 'str', + 'extra': 'object' } attribute_map = { @@ -46,19 +47,21 @@ class ReleaseContrib(object): 'creator_id': 'creator_id', 'creator': 'creator', 'raw_name': 'raw_name', - 'extra': 'extra', - 'role': 'role' + 'role': 'role', + 'raw_affiliation': 'raw_affiliation', + 'extra': 'extra' } - def __init__(self, index=None, creator_id=None, creator=None, raw_name=None, extra=None, role=None): # noqa: E501 + def __init__(self, index=None, creator_id=None, creator=None, raw_name=None, role=None, raw_affiliation=None, extra=None): # noqa: E501 """ReleaseContrib - a model defined in Swagger""" # noqa: E501 self._index = None self._creator_id = None self._creator = None self._raw_name = None - self._extra = None self._role = None + self._raw_affiliation = None + self._extra = None self.discriminator = None if index is not None: @@ -69,10 +72,12 @@ class ReleaseContrib(object): self.creator = creator if raw_name is not None: self.raw_name = raw_name - if extra is not None: - self.extra = extra if role is not None: self.role = role + if raw_affiliation is not None: + self.raw_affiliation = raw_affiliation + if extra is not None: + self.extra = extra @property def index(self): @@ -161,46 +166,69 @@ class ReleaseContrib(object): self._raw_name = raw_name @property - def extra(self): - """Gets the extra of this ReleaseContrib. # noqa: E501 + def role(self): + """Gets the role of this ReleaseContrib. # noqa: E501 - :return: The extra of this ReleaseContrib. # noqa: E501 - :rtype: object + :return: The role of this ReleaseContrib. # noqa: E501 + :rtype: str """ - return self._extra + return self._role - @extra.setter - def extra(self, extra): - """Sets the extra of this ReleaseContrib. + @role.setter + def role(self, role): + """Sets the role of this ReleaseContrib. - :param extra: The extra of this ReleaseContrib. # noqa: E501 - :type: object + :param role: The role of this ReleaseContrib. # noqa: E501 + :type: str """ - self._extra = extra + self._role = role @property - def role(self): - """Gets the role of this ReleaseContrib. # noqa: E501 + def raw_affiliation(self): + """Gets the raw_affiliation of this ReleaseContrib. # noqa: E501 + Raw affiliation string as displayed in text # noqa: E501 - :return: The role of this ReleaseContrib. # noqa: E501 + :return: The raw_affiliation of this ReleaseContrib. # noqa: E501 :rtype: str """ - return self._role + return self._raw_affiliation - @role.setter - def role(self, role): - """Sets the role of this ReleaseContrib. + @raw_affiliation.setter + def raw_affiliation(self, raw_affiliation): + """Sets the raw_affiliation of this ReleaseContrib. + Raw affiliation string as displayed in text # noqa: E501 - :param role: The role of this ReleaseContrib. # noqa: E501 + :param raw_affiliation: The raw_affiliation of this ReleaseContrib. # noqa: E501 :type: str """ - self._role = role + self._raw_affiliation = raw_affiliation + + @property + def extra(self): + """Gets the extra of this ReleaseContrib. # noqa: E501 + + + :return: The extra of this ReleaseContrib. # noqa: E501 + :rtype: object + """ + return self._extra + + @extra.setter + def extra(self, extra): + """Sets the extra of this ReleaseContrib. + + + :param extra: The extra of this ReleaseContrib. # noqa: E501 + :type: object + """ + + self._extra = extra def to_dict(self): """Returns the model properties as a dict""" |