# 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_maven.configuration import Configuration class RepositoryVersion(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 = { 'base_version': 'str' } attribute_map = { 'base_version': 'base_version' } def __init__(self, base_version=None, local_vars_configuration=None): # noqa: E501 """RepositoryVersion - 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._base_version = None self.discriminator = None if base_version is not None: self.base_version = base_version @property def base_version(self): """Gets the base_version of this RepositoryVersion. # noqa: E501 A repository version whose content was used as the initial set of content for this repository version # noqa: E501 :return: The base_version of this RepositoryVersion. # noqa: E501 :rtype: str """ return self._base_version @base_version.setter def base_version(self, base_version): """Sets the base_version of this RepositoryVersion. A repository version whose content was used as the initial set of content for this repository version # noqa: E501 :param base_version: The base_version of this RepositoryVersion. # noqa: E501 :type: str """ self._base_version = base_version 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, RepositoryVersion): 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, RepositoryVersion): return True return self.to_dict() != other.to_dict()