:py:mod:`abacusai.database_connector_schema`
============================================

.. py:module:: abacusai.database_connector_schema


Module Contents
---------------

Classes
~~~~~~~

.. autoapisummary::

   abacusai.database_connector_schema.DatabaseConnectorSchema




.. py:class:: DatabaseConnectorSchema(client, tableName=None, columns={})

   Bases: :py:obj:`abacusai.return_class.AbstractApiClass`

   A schema description for a table from a database connector

   :param client: An authenticated API Client instance
   :type client: ApiClient
   :param tableName: The unique name of the table.
   :type tableName: str
   :param columns: List of columns in the table.
   :type columns: DatabaseConnectorColumn

   .. py:method:: __repr__()

      Return repr(self).


   .. py:method:: to_dict()

      Get a dict representation of the parameters in this class

      :returns: The dict value representation of the class parameters
      :rtype: dict



