# coding: utf-8 """ Pulp 3 API Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501 The version of the OpenAPI document: v3 Contact: pulp-list@redhat.com Generated by: https://openapi-generator.tech """ import pprint import re # noqa: F401 import six from pulpcore.client.pulp_ansible.configuration import Configuration class CollectionResponse(object): """NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech Do not edit the class manually. """ """ Attributes: openapi_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. """ openapi_types = { 'href': 'str', 'namespace': 'str', 'name': 'str', 'deprecated': 'bool', 'versions_url': 'str', 'highest_version': 'object', 'created_at': 'datetime', 'updated_at': 'datetime' } attribute_map = { 'href': 'href', 'namespace': 'namespace', 'name': 'name', 'deprecated': 'deprecated', 'versions_url': 'versions_url', 'highest_version': 'highest_version', 'created_at': 'created_at', 'updated_at': 'updated_at' } def __init__(self, href=None, namespace=None, name=None, deprecated=None, versions_url=None, highest_version=None, created_at=None, updated_at=None, local_vars_configuration=None): # noqa: E501 """CollectionResponse - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() self.local_vars_configuration = local_vars_configuration self._href = None self._namespace = None self._name = None self._deprecated = None self._versions_url = None self._highest_version = None self._created_at = None self._updated_at = None self.discriminator = None if href is not None: self.href = href if namespace is not None: self.namespace = namespace if name is not None: self.name = name if deprecated is not None: self.deprecated = deprecated if versions_url is not None: self.versions_url = versions_url if highest_version is not None: self.highest_version = highest_version if created_at is not None: self.created_at = created_at if updated_at is not None: self.updated_at = updated_at @property def href(self): """Gets the href of this CollectionResponse. # noqa: E501 :return: The href of this CollectionResponse. # noqa: E501 :rtype: str """ return self._href @href.setter def href(self, href): """Sets the href of this CollectionResponse. :param href: The href of this CollectionResponse. # noqa: E501 :type: str """ self._href = href @property def namespace(self): """Gets the namespace of this CollectionResponse. # noqa: E501 :return: The namespace of this CollectionResponse. # noqa: E501 :rtype: str """ return self._namespace @namespace.setter def namespace(self, namespace): """Sets the namespace of this CollectionResponse. :param namespace: The namespace of this CollectionResponse. # noqa: E501 :type: str """ self._namespace = namespace @property def name(self): """Gets the name of this CollectionResponse. # noqa: E501 :return: The name of this CollectionResponse. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): """Sets the name of this CollectionResponse. :param name: The name of this CollectionResponse. # noqa: E501 :type: str """ self._name = name @property def deprecated(self): """Gets the deprecated of this CollectionResponse. # noqa: E501 :return: The deprecated of this CollectionResponse. # noqa: E501 :rtype: bool """ return self._deprecated @deprecated.setter def deprecated(self, deprecated): """Sets the deprecated of this CollectionResponse. :param deprecated: The deprecated of this CollectionResponse. # noqa: E501 :type: bool """ self._deprecated = deprecated @property def versions_url(self): """Gets the versions_url of this CollectionResponse. # noqa: E501 :return: The versions_url of this CollectionResponse. # noqa: E501 :rtype: str """ return self._versions_url @versions_url.setter def versions_url(self, versions_url): """Sets the versions_url of this CollectionResponse. :param versions_url: The versions_url of this CollectionResponse. # noqa: E501 :type: str """ self._versions_url = versions_url @property def highest_version(self): """Gets the highest_version of this CollectionResponse. # noqa: E501 :return: The highest_version of this CollectionResponse. # noqa: E501 :rtype: object """ return self._highest_version @highest_version.setter def highest_version(self, highest_version): """Sets the highest_version of this CollectionResponse. :param highest_version: The highest_version of this CollectionResponse. # noqa: E501 :type: object """ self._highest_version = highest_version @property def created_at(self): """Gets the created_at of this CollectionResponse. # noqa: E501 :return: The created_at of this CollectionResponse. # noqa: E501 :rtype: datetime """ return self._created_at @created_at.setter def created_at(self, created_at): """Sets the created_at of this CollectionResponse. :param created_at: The created_at of this CollectionResponse. # noqa: E501 :type: datetime """ self._created_at = created_at @property def updated_at(self): """Gets the updated_at of this CollectionResponse. # noqa: E501 :return: The updated_at of this CollectionResponse. # noqa: E501 :rtype: datetime """ return self._updated_at @updated_at.setter def updated_at(self, updated_at): """Sets the updated_at of this CollectionResponse. :param updated_at: The updated_at of this CollectionResponse. # noqa: E501 :type: datetime """ self._updated_at = updated_at def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.openapi_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, CollectionResponse): return False return self.to_dict() == other.to_dict() def __ne__(self, other): """Returns true if both objects are not equal""" if not isinstance(other, CollectionResponse): return True return self.to_dict() != other.to_dict()