Source code for thamos.swagger_client.models.analysis_status_response_status

# coding: utf-8

"""
    Thoth User API

    No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)  # noqa: E501

    OpenAPI spec version: 0.7.0-dev

    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""

import pprint
import re  # noqa: F401

import six

[docs]class AnalysisStatusResponseStatus(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 = { 'finished_at': 'str', 'reason': 'str', 'started_at': 'str', 'state': 'str' } attribute_map = { 'finished_at': 'finished_at', 'reason': 'reason', 'started_at': 'started_at', 'state': 'state' } def __init__(self, finished_at=None, reason=None, started_at=None, state=None): # noqa: E501 """AnalysisStatusResponseStatus - a model defined in Swagger""" # noqa: E501 self._finished_at = None self._reason = None self._started_at = None self._state = None self.discriminator = None self.finished_at = finished_at self.reason = reason self.started_at = started_at self.state = state @property def finished_at(self): """Gets the finished_at of this AnalysisStatusResponseStatus. # noqa: E501 Datetime in ISO format informing about when the analysis has finished # noqa: E501 :return: The finished_at of this AnalysisStatusResponseStatus. # noqa: E501 :rtype: str """ return self._finished_at @finished_at.setter def finished_at(self, finished_at): """Sets the finished_at of this AnalysisStatusResponseStatus. Datetime in ISO format informing about when the analysis has finished # noqa: E501 :param finished_at: The finished_at of this AnalysisStatusResponseStatus. # noqa: E501 :type: str """ self._finished_at = finished_at @property def reason(self): """Gets the reason of this AnalysisStatusResponseStatus. # noqa: E501 Reasoning on finished run # noqa: E501 :return: The reason of this AnalysisStatusResponseStatus. # noqa: E501 :rtype: str """ return self._reason @reason.setter def reason(self, reason): """Sets the reason of this AnalysisStatusResponseStatus. Reasoning on finished run # noqa: E501 :param reason: The reason of this AnalysisStatusResponseStatus. # noqa: E501 :type: str """ self._reason = reason @property def started_at(self): """Gets the started_at of this AnalysisStatusResponseStatus. # noqa: E501 Datetime in ISO format informing about when the analysis has started # noqa: E501 :return: The started_at of this AnalysisStatusResponseStatus. # noqa: E501 :rtype: str """ return self._started_at @started_at.setter def started_at(self, started_at): """Sets the started_at of this AnalysisStatusResponseStatus. Datetime in ISO format informing about when the analysis has started # noqa: E501 :param started_at: The started_at of this AnalysisStatusResponseStatus. # noqa: E501 :type: str """ self._started_at = started_at @property def state(self): """Gets the state of this AnalysisStatusResponseStatus. # noqa: E501 :return: The state of this AnalysisStatusResponseStatus. # noqa: E501 :rtype: str """ return self._state @state.setter def state(self, state): """Sets the state of this AnalysisStatusResponseStatus. :param state: The state of this AnalysisStatusResponseStatus. # noqa: E501 :type: str """ if state is None: raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501 self._state = state
[docs] 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(AnalysisStatusResponseStatus, dict): for key, value in self.items(): result[key] = value return result
[docs] 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, AnalysisStatusResponseStatus): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other