lentiq.models.table_describe module
# coding: utf-8 ####alex test """ """ import pprint import re # noqa: F401 import six class TableDescribe(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 = { 'column_name': 'str', 'comment': 'str', 'data_type': 'str' } attribute_map = { 'column_name': 'columnName', 'comment': 'comment', 'data_type': 'dataType' } discriminator = None def __init__(self, column_name=None, comment=None, data_type=None): # noqa: E501 """TableDescribe - a model defined in Swagger""" # noqa: E501 self._column_name = None self._comment = None self._data_type = None if column_name is not None: self.column_name = column_name if comment is not None: self.comment = comment if data_type is not None: self.data_type = data_type @property def column_name(self): """Gets the column_name of this TableDescribe. # noqa: E501 :return: The column_name of this TableDescribe. # noqa: E501 :rtype: str """ return self._column_name @column_name.setter def column_name(self, column_name): """Sets the column_name of this TableDescribe. :param column_name: The column_name of this TableDescribe. # noqa: E501 :type: str """ self._column_name = column_name @property def comment(self): """Gets the comment of this TableDescribe. # noqa: E501 :return: The comment of this TableDescribe. # noqa: E501 :rtype: str """ return self._comment @comment.setter def comment(self, comment): """Sets the comment of this TableDescribe. :param comment: The comment of this TableDescribe. # noqa: E501 :type: str """ self._comment = comment @property def data_type(self): """Gets the data_type of this TableDescribe. # noqa: E501 :return: The data_type of this TableDescribe. # noqa: E501 :rtype: str """ return self._data_type @data_type.setter def data_type(self, data_type): """Sets the data_type of this TableDescribe. :param data_type: The data_type of this TableDescribe. # noqa: E501 :type: str """ self._data_type = data_type 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(TableDescribe, 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, TableDescribe): 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 TableDescribe
class TableDescribe(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 = { 'column_name': 'str', 'comment': 'str', 'data_type': 'str' } attribute_map = { 'column_name': 'columnName', 'comment': 'comment', 'data_type': 'dataType' } discriminator = None def __init__(self, column_name=None, comment=None, data_type=None): # noqa: E501 """TableDescribe - a model defined in Swagger""" # noqa: E501 self._column_name = None self._comment = None self._data_type = None if column_name is not None: self.column_name = column_name if comment is not None: self.comment = comment if data_type is not None: self.data_type = data_type @property def column_name(self): """Gets the column_name of this TableDescribe. # noqa: E501 :return: The column_name of this TableDescribe. # noqa: E501 :rtype: str """ return self._column_name @column_name.setter def column_name(self, column_name): """Sets the column_name of this TableDescribe. :param column_name: The column_name of this TableDescribe. # noqa: E501 :type: str """ self._column_name = column_name @property def comment(self): """Gets the comment of this TableDescribe. # noqa: E501 :return: The comment of this TableDescribe. # noqa: E501 :rtype: str """ return self._comment @comment.setter def comment(self, comment): """Sets the comment of this TableDescribe. :param comment: The comment of this TableDescribe. # noqa: E501 :type: str """ self._comment = comment @property def data_type(self): """Gets the data_type of this TableDescribe. # noqa: E501 :return: The data_type of this TableDescribe. # noqa: E501 :rtype: str """ return self._data_type @data_type.setter def data_type(self, data_type): """Sets the data_type of this TableDescribe. :param data_type: The data_type of this TableDescribe. # noqa: E501 :type: str """ self._data_type = data_type 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(TableDescribe, 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, TableDescribe): 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)
- TableDescribe
- builtins.object
Class variables
var attribute_map
var discriminator
var swagger_types
Static methods
def __init__(
self, column_name=None, comment=None, data_type=None)
TableDescribe - a model defined in Swagger
def __init__(self, column_name=None, comment=None, data_type=None): # noqa: E501 """TableDescribe - a model defined in Swagger""" # noqa: E501 self._column_name = None self._comment = None self._data_type = None if column_name is not None: self.column_name = column_name if comment is not None: self.comment = comment if data_type is not None: self.data_type = data_type
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(TableDescribe, 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 column_name
Gets the column_name of this TableDescribe. # noqa: E501
:return: The column_name of this TableDescribe. # noqa: E501 :rtype: str
var comment
Gets the comment of this TableDescribe. # noqa: E501
:return: The comment of this TableDescribe. # noqa: E501 :rtype: str
var data_type
Gets the data_type of this TableDescribe. # noqa: E501
:return: The data_type of this TableDescribe. # noqa: E501 :rtype: str