lentiq.models.all_datasets module
# coding: utf-8 ####alex test """ """ import pprint import re # noqa: F401 import six from lentiq.models.dataset import Dataset # noqa: F401,E501 class AllDatasets(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 = { 'other': 'list[Dataset]', 'published': 'list[Dataset]', 'publishing': 'list[Dataset]', 'subscribed': 'list[Dataset]' } attribute_map = { 'other': 'other', 'published': 'published', 'publishing': 'publishing', 'subscribed': 'subscribed' } discriminator = None def __init__(self, other=None, published=None, publishing=None, subscribed=None): # noqa: E501 """AllDatasets - a model defined in Swagger""" # noqa: E501 self._other = None self._published = None self._publishing = None self._subscribed = None if other is not None: self.other = other if published is not None: self.published = published if publishing is not None: self.publishing = publishing if subscribed is not None: self.subscribed = subscribed @property def other(self): """Gets the other of this AllDatasets. # noqa: E501 :return: The other of this AllDatasets. # noqa: E501 :rtype: list[Dataset] """ return self._other @other.setter def other(self, other): """Sets the other of this AllDatasets. :param other: The other of this AllDatasets. # noqa: E501 :type: list[Dataset] """ self._other = other @property def published(self): """Gets the published of this AllDatasets. # noqa: E501 :return: The published of this AllDatasets. # noqa: E501 :rtype: list[Dataset] """ return self._published @published.setter def published(self, published): """Sets the published of this AllDatasets. :param published: The published of this AllDatasets. # noqa: E501 :type: list[Dataset] """ self._published = published @property def publishing(self): """Gets the publishing of this AllDatasets. # noqa: E501 :return: The publishing of this AllDatasets. # noqa: E501 :rtype: list[Dataset] """ return self._publishing @publishing.setter def publishing(self, publishing): """Sets the publishing of this AllDatasets. :param publishing: The publishing of this AllDatasets. # noqa: E501 :type: list[Dataset] """ self._publishing = publishing @property def subscribed(self): """Gets the subscribed of this AllDatasets. # noqa: E501 :return: The subscribed of this AllDatasets. # noqa: E501 :rtype: list[Dataset] """ return self._subscribed @subscribed.setter def subscribed(self, subscribed): """Sets the subscribed of this AllDatasets. :param subscribed: The subscribed of this AllDatasets. # noqa: E501 :type: list[Dataset] """ self._subscribed = subscribed 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(AllDatasets, 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, AllDatasets): 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 AllDatasets
class AllDatasets(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 = { 'other': 'list[Dataset]', 'published': 'list[Dataset]', 'publishing': 'list[Dataset]', 'subscribed': 'list[Dataset]' } attribute_map = { 'other': 'other', 'published': 'published', 'publishing': 'publishing', 'subscribed': 'subscribed' } discriminator = None def __init__(self, other=None, published=None, publishing=None, subscribed=None): # noqa: E501 """AllDatasets - a model defined in Swagger""" # noqa: E501 self._other = None self._published = None self._publishing = None self._subscribed = None if other is not None: self.other = other if published is not None: self.published = published if publishing is not None: self.publishing = publishing if subscribed is not None: self.subscribed = subscribed @property def other(self): """Gets the other of this AllDatasets. # noqa: E501 :return: The other of this AllDatasets. # noqa: E501 :rtype: list[Dataset] """ return self._other @other.setter def other(self, other): """Sets the other of this AllDatasets. :param other: The other of this AllDatasets. # noqa: E501 :type: list[Dataset] """ self._other = other @property def published(self): """Gets the published of this AllDatasets. # noqa: E501 :return: The published of this AllDatasets. # noqa: E501 :rtype: list[Dataset] """ return self._published @published.setter def published(self, published): """Sets the published of this AllDatasets. :param published: The published of this AllDatasets. # noqa: E501 :type: list[Dataset] """ self._published = published @property def publishing(self): """Gets the publishing of this AllDatasets. # noqa: E501 :return: The publishing of this AllDatasets. # noqa: E501 :rtype: list[Dataset] """ return self._publishing @publishing.setter def publishing(self, publishing): """Sets the publishing of this AllDatasets. :param publishing: The publishing of this AllDatasets. # noqa: E501 :type: list[Dataset] """ self._publishing = publishing @property def subscribed(self): """Gets the subscribed of this AllDatasets. # noqa: E501 :return: The subscribed of this AllDatasets. # noqa: E501 :rtype: list[Dataset] """ return self._subscribed @subscribed.setter def subscribed(self, subscribed): """Sets the subscribed of this AllDatasets. :param subscribed: The subscribed of this AllDatasets. # noqa: E501 :type: list[Dataset] """ self._subscribed = subscribed 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(AllDatasets, 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, AllDatasets): 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)
- AllDatasets
- builtins.object
Class variables
var attribute_map
var discriminator
var swagger_types
Static methods
def __init__(
self, other=None, published=None, publishing=None, subscribed=None)
AllDatasets - a model defined in Swagger
def __init__(self, other=None, published=None, publishing=None, subscribed=None): # noqa: E501 """AllDatasets - a model defined in Swagger""" # noqa: E501 self._other = None self._published = None self._publishing = None self._subscribed = None if other is not None: self.other = other if published is not None: self.published = published if publishing is not None: self.publishing = publishing if subscribed is not None: self.subscribed = subscribed
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(AllDatasets, 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 other
Gets the other of this AllDatasets. # noqa: E501
:return: The other of this AllDatasets. # noqa: E501 :rtype: list[Dataset]
var published
Gets the published of this AllDatasets. # noqa: E501
:return: The published of this AllDatasets. # noqa: E501 :rtype: list[Dataset]
var publishing
Gets the publishing of this AllDatasets. # noqa: E501
:return: The publishing of this AllDatasets. # noqa: E501 :rtype: list[Dataset]
var subscribed
Gets the subscribed of this AllDatasets. # noqa: E501
:return: The subscribed of this AllDatasets. # noqa: E501 :rtype: list[Dataset]