# coding: utf-8 """ Gitea API. This documentation describes the Gitea API. # noqa: E501 OpenAPI spec version: 1.1.1 Generated by: https://github.com/swagger-api/swagger-codegen.git """ import pprint import re # noqa: F401 import six from swagger_client.models.user import User # noqa: F401,E501 class PublicKey(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 = { 'created_at': 'datetime', 'fingerprint': 'str', 'id': 'int', 'key': 'str', 'key_type': 'str', 'read_only': 'bool', 'title': 'str', 'url': 'str', 'user': 'User' } attribute_map = { 'created_at': 'created_at', 'fingerprint': 'fingerprint', 'id': 'id', 'key': 'key', 'key_type': 'key_type', 'read_only': 'read_only', 'title': 'title', 'url': 'url', 'user': 'user' } def __init__(self, created_at=None, fingerprint=None, id=None, key=None, key_type=None, read_only=None, title=None, url=None, user=None): # noqa: E501 """PublicKey - a model defined in Swagger""" # noqa: E501 self._created_at = None self._fingerprint = None self._id = None self._key = None self._key_type = None self._read_only = None self._title = None self._url = None self._user = None self.discriminator = None if created_at is not None: self.created_at = created_at if fingerprint is not None: self.fingerprint = fingerprint if id is not None: self.id = id if key is not None: self.key = key if key_type is not None: self.key_type = key_type if read_only is not None: self.read_only = read_only if title is not None: self.title = title if url is not None: self.url = url if user is not None: self.user = user @property def created_at(self): """Gets the created_at of this PublicKey. # noqa: E501 :return: The created_at of this PublicKey. # noqa: E501 :rtype: datetime """ return self._created_at @created_at.setter def created_at(self, created_at): """Sets the created_at of this PublicKey. :param created_at: The created_at of this PublicKey. # noqa: E501 :type: datetime """ self._created_at = created_at @property def fingerprint(self): """Gets the fingerprint of this PublicKey. # noqa: E501 :return: The fingerprint of this PublicKey. # noqa: E501 :rtype: str """ return self._fingerprint @fingerprint.setter def fingerprint(self, fingerprint): """Sets the fingerprint of this PublicKey. :param fingerprint: The fingerprint of this PublicKey. # noqa: E501 :type: str """ self._fingerprint = fingerprint @property def id(self): """Gets the id of this PublicKey. # noqa: E501 :return: The id of this PublicKey. # noqa: E501 :rtype: int """ return self._id @id.setter def id(self, id): """Sets the id of this PublicKey. :param id: The id of this PublicKey. # noqa: E501 :type: int """ self._id = id @property def key(self): """Gets the key of this PublicKey. # noqa: E501 :return: The key of this PublicKey. # noqa: E501 :rtype: str """ return self._key @key.setter def key(self, key): """Sets the key of this PublicKey. :param key: The key of this PublicKey. # noqa: E501 :type: str """ self._key = key @property def key_type(self): """Gets the key_type of this PublicKey. # noqa: E501 :return: The key_type of this PublicKey. # noqa: E501 :rtype: str """ return self._key_type @key_type.setter def key_type(self, key_type): """Sets the key_type of this PublicKey. :param key_type: The key_type of this PublicKey. # noqa: E501 :type: str """ self._key_type = key_type @property def read_only(self): """Gets the read_only of this PublicKey. # noqa: E501 :return: The read_only of this PublicKey. # noqa: E501 :rtype: bool """ return self._read_only @read_only.setter def read_only(self, read_only): """Sets the read_only of this PublicKey. :param read_only: The read_only of this PublicKey. # noqa: E501 :type: bool """ self._read_only = read_only @property def title(self): """Gets the title of this PublicKey. # noqa: E501 :return: The title of this PublicKey. # noqa: E501 :rtype: str """ return self._title @title.setter def title(self, title): """Sets the title of this PublicKey. :param title: The title of this PublicKey. # noqa: E501 :type: str """ self._title = title @property def url(self): """Gets the url of this PublicKey. # noqa: E501 :return: The url of this PublicKey. # noqa: E501 :rtype: str """ return self._url @url.setter def url(self, url): """Sets the url of this PublicKey. :param url: The url of this PublicKey. # noqa: E501 :type: str """ self._url = url @property def user(self): """Gets the user of this PublicKey. # noqa: E501 :return: The user of this PublicKey. # noqa: E501 :rtype: User """ return self._user @user.setter def user(self, user): """Sets the user of this PublicKey. :param user: The user of this PublicKey. # noqa: E501 :type: User """ self._user = user 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(PublicKey, 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, PublicKey): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other