Source code for kittycad.models.select_get
from typing import List
from .base import KittyCadBaseModel
[docs]
class SelectGet(KittyCadBaseModel):
"""The response from the `SelectGet` command."""
entity_ids: List[str]
from typing import List
from .base import KittyCadBaseModel
[docs]
class SelectGet(KittyCadBaseModel):
"""The response from the `SelectGet` command."""
entity_ids: List[str]