189 lines
5.0 KiB
Python
189 lines
5.0 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
api/v1/activity_service.proto
|
|
|
|
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
|
|
OpenAPI spec version: version not set
|
|
|
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
"""
|
|
|
|
import pprint
|
|
import re # noqa: F401
|
|
|
|
import six
|
|
|
|
class V1Reaction(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 = {
|
|
'id': 'int',
|
|
'creator': 'str',
|
|
'content_id': 'str',
|
|
'reaction_type': 'V1ReactionType'
|
|
}
|
|
|
|
attribute_map = {
|
|
'id': 'id',
|
|
'creator': 'creator',
|
|
'content_id': 'contentId',
|
|
'reaction_type': 'reactionType'
|
|
}
|
|
|
|
def __init__(self, id=None, creator=None, content_id=None, reaction_type=None): # noqa: E501
|
|
"""V1Reaction - a model defined in Swagger""" # noqa: E501
|
|
self._id = None
|
|
self._creator = None
|
|
self._content_id = None
|
|
self._reaction_type = None
|
|
self.discriminator = None
|
|
if id is not None:
|
|
self.id = id
|
|
if creator is not None:
|
|
self.creator = creator
|
|
if content_id is not None:
|
|
self.content_id = content_id
|
|
if reaction_type is not None:
|
|
self.reaction_type = reaction_type
|
|
|
|
@property
|
|
def id(self):
|
|
"""Gets the id of this V1Reaction. # noqa: E501
|
|
|
|
|
|
:return: The id of this V1Reaction. # noqa: E501
|
|
:rtype: int
|
|
"""
|
|
return self._id
|
|
|
|
@id.setter
|
|
def id(self, id):
|
|
"""Sets the id of this V1Reaction.
|
|
|
|
|
|
:param id: The id of this V1Reaction. # noqa: E501
|
|
:type: int
|
|
"""
|
|
|
|
self._id = id
|
|
|
|
@property
|
|
def creator(self):
|
|
"""Gets the creator of this V1Reaction. # noqa: E501
|
|
|
|
|
|
:return: The creator of this V1Reaction. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._creator
|
|
|
|
@creator.setter
|
|
def creator(self, creator):
|
|
"""Sets the creator of this V1Reaction.
|
|
|
|
|
|
:param creator: The creator of this V1Reaction. # noqa: E501
|
|
:type: str
|
|
"""
|
|
|
|
self._creator = creator
|
|
|
|
@property
|
|
def content_id(self):
|
|
"""Gets the content_id of this V1Reaction. # noqa: E501
|
|
|
|
|
|
:return: The content_id of this V1Reaction. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._content_id
|
|
|
|
@content_id.setter
|
|
def content_id(self, content_id):
|
|
"""Sets the content_id of this V1Reaction.
|
|
|
|
|
|
:param content_id: The content_id of this V1Reaction. # noqa: E501
|
|
:type: str
|
|
"""
|
|
|
|
self._content_id = content_id
|
|
|
|
@property
|
|
def reaction_type(self):
|
|
"""Gets the reaction_type of this V1Reaction. # noqa: E501
|
|
|
|
|
|
:return: The reaction_type of this V1Reaction. # noqa: E501
|
|
:rtype: V1ReactionType
|
|
"""
|
|
return self._reaction_type
|
|
|
|
@reaction_type.setter
|
|
def reaction_type(self, reaction_type):
|
|
"""Sets the reaction_type of this V1Reaction.
|
|
|
|
|
|
:param reaction_type: The reaction_type of this V1Reaction. # noqa: E501
|
|
:type: V1ReactionType
|
|
"""
|
|
|
|
self._reaction_type = reaction_type
|
|
|
|
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
|
|
if issubclass(V1Reaction, dict):
|
|
for key, value in self.items():
|
|
result[key] = 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, V1Reaction):
|
|
return False
|
|
|
|
return self.__dict__ == other.__dict__
|
|
|
|
def __ne__(self, other):
|
|
"""Returns true if both objects are not equal"""
|
|
return not self == other
|