lentiq.models.workflow_execution module
# coding: utf-8 ####alex test """ """ import pprint import re # noqa: F401 import six from lentiq.models.workflow_execution_metadata import WorkflowExecutionMetadata # noqa: F401,E501 from lentiq.models.workflow_execution_spec import WorkflowExecutionSpec # noqa: F401,E501 from lentiq.models.workflow_execution_status import WorkflowExecutionStatus # noqa: F401,E501 class WorkflowExecution(object): """ """ """ 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 = { 'metadata': 'WorkflowExecutionMetadata', 'spec': 'WorkflowExecutionSpec', 'status': 'WorkflowExecutionStatus' } attribute_map = { 'metadata': 'metadata', 'spec': 'spec', 'status': 'status' } discriminator = None def __init__(self, metadata=None, spec=None, status=None): # noqa: E501 """WorkflowExecution - a model defined in Swagger""" # noqa: E501 self._metadata = None self._spec = None self._status = None if metadata is not None: self.metadata = metadata if spec is not None: self.spec = spec if status is not None: self.status = status @property def metadata(self): """Gets the metadata of this WorkflowExecution. # noqa: E501 :return: The metadata of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionMetadata """ return self._metadata @metadata.setter def metadata(self, metadata): """Sets the metadata of this WorkflowExecution. :param metadata: The metadata of this WorkflowExecution. # noqa: E501 :type: WorkflowExecutionMetadata """ self._metadata = metadata @property def spec(self): """Gets the spec of this WorkflowExecution. # noqa: E501 :return: The spec of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionSpec """ return self._spec @spec.setter def spec(self, spec): """Sets the spec of this WorkflowExecution. :param spec: The spec of this WorkflowExecution. # noqa: E501 :type: WorkflowExecutionSpec """ self._spec = spec @property def status(self): """Gets the status of this WorkflowExecution. # noqa: E501 :return: The status of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionStatus """ return self._status @status.setter def status(self, status): """Sets the status of this WorkflowExecution. :param status: The status of this WorkflowExecution. # noqa: E501 :type: WorkflowExecutionStatus """ self._status = status 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(WorkflowExecution, 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, WorkflowExecution): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
Classes
class WorkflowExecution
class WorkflowExecution(object): """ """ """ 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 = { 'metadata': 'WorkflowExecutionMetadata', 'spec': 'WorkflowExecutionSpec', 'status': 'WorkflowExecutionStatus' } attribute_map = { 'metadata': 'metadata', 'spec': 'spec', 'status': 'status' } discriminator = None def __init__(self, metadata=None, spec=None, status=None): # noqa: E501 """WorkflowExecution - a model defined in Swagger""" # noqa: E501 self._metadata = None self._spec = None self._status = None if metadata is not None: self.metadata = metadata if spec is not None: self.spec = spec if status is not None: self.status = status @property def metadata(self): """Gets the metadata of this WorkflowExecution. # noqa: E501 :return: The metadata of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionMetadata """ return self._metadata @metadata.setter def metadata(self, metadata): """Sets the metadata of this WorkflowExecution. :param metadata: The metadata of this WorkflowExecution. # noqa: E501 :type: WorkflowExecutionMetadata """ self._metadata = metadata @property def spec(self): """Gets the spec of this WorkflowExecution. # noqa: E501 :return: The spec of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionSpec """ return self._spec @spec.setter def spec(self, spec): """Sets the spec of this WorkflowExecution. :param spec: The spec of this WorkflowExecution. # noqa: E501 :type: WorkflowExecutionSpec """ self._spec = spec @property def status(self): """Gets the status of this WorkflowExecution. # noqa: E501 :return: The status of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionStatus """ return self._status @status.setter def status(self, status): """Sets the status of this WorkflowExecution. :param status: The status of this WorkflowExecution. # noqa: E501 :type: WorkflowExecutionStatus """ self._status = status 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(WorkflowExecution, 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, WorkflowExecution): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
Ancestors (in MRO)
- WorkflowExecution
- builtins.object
Class variables
var attribute_map
var discriminator
var swagger_types
Static methods
def __init__(
self, metadata=None, spec=None, status=None)
WorkflowExecution - a model defined in Swagger
def __init__(self, metadata=None, spec=None, status=None): # noqa: E501 """WorkflowExecution - a model defined in Swagger""" # noqa: E501 self._metadata = None self._spec = None self._status = None if metadata is not None: self.metadata = metadata if spec is not None: self.spec = spec if status is not None: self.status = status
def to_dict(
self)
Returns the model properties as a dict
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(WorkflowExecution, dict): for key, value in self.items(): result[key] = value return result
def to_str(
self)
Returns the string representation of the model
def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict())
Instance variables
var metadata
Gets the metadata of this WorkflowExecution. # noqa: E501
:return: The metadata of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionMetadata
var spec
Gets the spec of this WorkflowExecution. # noqa: E501
:return: The spec of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionSpec
var status
Gets the status of this WorkflowExecution. # noqa: E501
:return: The status of this WorkflowExecution. # noqa: E501 :rtype: WorkflowExecutionStatus