lentiq.models.task module
# coding: utf-8 ####alex test """ """ import pprint import re # noqa: F401 import six from lentiq.models.container import Container # noqa: F401,E501 class Task(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 = { 'annotations': 'dict(str, str)', 'container': 'Container', 'dependencies': 'list[str]', 'description': 'str', 'name': 'str' } attribute_map = { 'annotations': 'annotations', 'container': 'container', 'dependencies': 'dependencies', 'description': 'description', 'name': 'name' } discriminator = None def __init__(self, annotations=None, container=None, dependencies=None, description=None, name=None): # noqa: E501 """Task - a model defined in Swagger""" # noqa: E501 self._annotations = None self._container = None self._dependencies = None self._description = None self._name = None if annotations is not None: self.annotations = annotations if container is not None: self.container = container if dependencies is not None: self.dependencies = dependencies if description is not None: self.description = description if name is not None: self.name = name @property def annotations(self): """Gets the annotations of this Task. # noqa: E501 :return: The annotations of this Task. # noqa: E501 :rtype: dict(str, str) """ return self._annotations @annotations.setter def annotations(self, annotations): """Sets the annotations of this Task. :param annotations: The annotations of this Task. # noqa: E501 :type: dict(str, str) """ self._annotations = annotations @property def container(self): """Gets the container of this Task. # noqa: E501 :return: The container of this Task. # noqa: E501 :rtype: Container """ return self._container @container.setter def container(self, container): """Sets the container of this Task. :param container: The container of this Task. # noqa: E501 :type: Container """ self._container = container @property def dependencies(self): """Gets the dependencies of this Task. # noqa: E501 :return: The dependencies of this Task. # noqa: E501 :rtype: list[str] """ return self._dependencies @dependencies.setter def dependencies(self, dependencies): """Sets the dependencies of this Task. :param dependencies: The dependencies of this Task. # noqa: E501 :type: list[str] """ self._dependencies = dependencies @property def description(self): """Gets the description of this Task. # noqa: E501 :return: The description of this Task. # noqa: E501 :rtype: str """ return self._description @description.setter def description(self, description): """Sets the description of this Task. :param description: The description of this Task. # noqa: E501 :type: str """ self._description = description @property def name(self): """Gets the name of this Task. # noqa: E501 :return: The name of this Task. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): """Sets the name of this Task. :param name: The name of this Task. # noqa: E501 :type: str """ self._name = name 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(Task, 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, Task): 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 Task
class Task(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 = { 'annotations': 'dict(str, str)', 'container': 'Container', 'dependencies': 'list[str]', 'description': 'str', 'name': 'str' } attribute_map = { 'annotations': 'annotations', 'container': 'container', 'dependencies': 'dependencies', 'description': 'description', 'name': 'name' } discriminator = None def __init__(self, annotations=None, container=None, dependencies=None, description=None, name=None): # noqa: E501 """Task - a model defined in Swagger""" # noqa: E501 self._annotations = None self._container = None self._dependencies = None self._description = None self._name = None if annotations is not None: self.annotations = annotations if container is not None: self.container = container if dependencies is not None: self.dependencies = dependencies if description is not None: self.description = description if name is not None: self.name = name @property def annotations(self): """Gets the annotations of this Task. # noqa: E501 :return: The annotations of this Task. # noqa: E501 :rtype: dict(str, str) """ return self._annotations @annotations.setter def annotations(self, annotations): """Sets the annotations of this Task. :param annotations: The annotations of this Task. # noqa: E501 :type: dict(str, str) """ self._annotations = annotations @property def container(self): """Gets the container of this Task. # noqa: E501 :return: The container of this Task. # noqa: E501 :rtype: Container """ return self._container @container.setter def container(self, container): """Sets the container of this Task. :param container: The container of this Task. # noqa: E501 :type: Container """ self._container = container @property def dependencies(self): """Gets the dependencies of this Task. # noqa: E501 :return: The dependencies of this Task. # noqa: E501 :rtype: list[str] """ return self._dependencies @dependencies.setter def dependencies(self, dependencies): """Sets the dependencies of this Task. :param dependencies: The dependencies of this Task. # noqa: E501 :type: list[str] """ self._dependencies = dependencies @property def description(self): """Gets the description of this Task. # noqa: E501 :return: The description of this Task. # noqa: E501 :rtype: str """ return self._description @description.setter def description(self, description): """Sets the description of this Task. :param description: The description of this Task. # noqa: E501 :type: str """ self._description = description @property def name(self): """Gets the name of this Task. # noqa: E501 :return: The name of this Task. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): """Sets the name of this Task. :param name: The name of this Task. # noqa: E501 :type: str """ self._name = name 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(Task, 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, Task): 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)
- Task
- builtins.object
Class variables
var attribute_map
var discriminator
var swagger_types
Static methods
def __init__(
self, annotations=None, container=None, dependencies=None, description=None, name=None)
Task - a model defined in Swagger
def __init__(self, annotations=None, container=None, dependencies=None, description=None, name=None): # noqa: E501 """Task - a model defined in Swagger""" # noqa: E501 self._annotations = None self._container = None self._dependencies = None self._description = None self._name = None if annotations is not None: self.annotations = annotations if container is not None: self.container = container if dependencies is not None: self.dependencies = dependencies if description is not None: self.description = description if name is not None: self.name = name
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(Task, 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 annotations
Gets the annotations of this Task. # noqa: E501
:return: The annotations of this Task. # noqa: E501 :rtype: dict(str, str)
var container
Gets the container of this Task. # noqa: E501
:return: The container of this Task. # noqa: E501 :rtype: Container
var dependencies
Gets the dependencies of this Task. # noqa: E501
:return: The dependencies of this Task. # noqa: E501 :rtype: list[str]
var description
Gets the description of this Task. # noqa: E501
:return: The description of this Task. # noqa: E501 :rtype: str
var name
Gets the name of this Task. # noqa: E501
:return: The name of this Task. # noqa: E501 :rtype: str