Source code for kittycad.models.get_num_objects


from pydantic import BaseModel, ConfigDict



[docs] class GetNumObjects(BaseModel): """The response from the `GetNumObjects` command.""" num_objects: int model_config = ConfigDict(protected_namespaces=())