:py:mod:`abacusai.use_case_requirements`
========================================

.. py:module:: abacusai.use_case_requirements


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

Classes
~~~~~~~

.. autoapisummary::

   abacusai.use_case_requirements.UseCaseRequirements




.. py:class:: UseCaseRequirements(client, datasetType=None, name=None, description=None, required=None, allowedFeatureMappings=None, allowedNestedFeatureMappings=None)

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

   Use Case Requirements

   :param client: An authenticated API Client instance
   :type client: ApiClient
   :param datasetType: The project-specific enum value of the dataset type
   :type datasetType: str
   :param name: The user-friendly name of the dataset type
   :type name: str
   :param description: The description of the dataset type
   :type description: str
   :param required: True if the dataset type is required for this project
   :type required: bool
   :param allowedFeatureMappings: A collection of key value pairs with each key being a column mapping enum (see a list of column mapping enums here) and each value being in the following dictionary format: { "description": str, "allowed_feature_types": feature_type_enum, "required": bool}
   :type allowedFeatureMappings: dict
   :param allowedNestedFeatureMappings: A collection of key value pairs with each key being a column mapping enum (see a list of column mapping enums here) and each value being in the following dictionary format: { "description": str, "allowed_feature_types": feature_type_enum, "required": bool}
   :type allowedNestedFeatureMappings: dict

   .. 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



