diff --git a/docs/source/index.rst b/docs/source/index.rst index d4285fed2..b56708cbb 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -2,7 +2,7 @@ Labelbox Python API reference =================================== .. toctree:: - :maxdepth: 2 + :maxdepth: 3 :caption: Contents: Client @@ -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: \ No newline at end of file diff --git a/labelbox/schema/identifiables.py b/labelbox/schema/identifiables.py index f7cd97b49..ab4c89b53 100644 --- a/labelbox/schema/identifiables.py +++ b/labelbox/schema/identifiables.py @@ -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.