Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Labelbox Python API reference
===================================

.. toctree::
:maxdepth: 2
:maxdepth: 3
:caption: Contents:

Client
Expand Down Expand Up @@ -235,3 +235,33 @@ Identifiables
.. automodule:: labelbox.schema.identifiables
:members:
:show-inheritance:

ConflictResolutionStrategy
---------------------------
.. automodule:: labelbox.schema.conflict_resolution_strategy
:members:
:show-inheritance:

FoundryClient
---------------------------
.. automodule:: labelbox.schema.foundry.foundry_client
:members:
:show-inheritance:

App
---------------------------
.. automodule:: labelbox.schema.foundry.app
:members:
:show-inheritance:

FoundryModel
---------------------------
.. automodule:: labelbox.schema.foundry.model
:members:
:show-inheritance:

SendToAnnotateParams
---------------------------
.. automodule:: labelbox.schema.send_to_annotate_params
:members:
:show-inheritance:
1 change: 1 addition & 0 deletions labelbox/schema/identifiables.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
class IdType(str, Enum):
"""
The type of id used to identify a data row.

Currently supported types are:
- DataRowId: The id assigned to a data row by Labelbox.
- GlobalKey: The id assigned to a data row by the user.
Expand Down