Source code for kittycad.models.scene_get_entity_ids

from typing import List

from .base import KittyCadBaseModel


[docs] class SceneGetEntityIds(KittyCadBaseModel): """The response from the `SceneGetEntityIds` command.""" entity_ids: List[List[str]]