Space#

class langchain_community.utilities.clickup.Space(id: int, name: str, private: bool, enabled_features: Dict[str, Any])[source]#

Component class for a space.

Attributes

Methods

__init__(id,ย name,ย private,ย enabled_features)

from_data(data)

Parameters:
  • id (int) โ€“

  • name (str) โ€“

  • private (bool) โ€“

  • enabled_features (Dict[str, Any]) โ€“

__init__(id: int, name: str, private: bool, enabled_features: Dict[str, Any]) โ†’ None#
Parameters:
  • id (int) โ€“

  • name (str) โ€“

  • private (bool) โ€“

  • enabled_features (Dict[str, Any]) โ€“

Return type:

None

classmethod from_data(data: Dict[str, Any]) โ†’ Space[source]#
Parameters:

data (Dict[str, Any]) โ€“

Return type:

Space