Source code for kittycad.models.create_region_from_query_point

from typing import Dict

from .base import KittyCadBaseModel


[docs] class CreateRegionFromQueryPoint(KittyCadBaseModel): """The response from the 'CreateRegionFromQueryPoint'. The region should have an ID taken from the ID of the 'CreateRegionFromQueryPoint' modeling command.""" region_mapping: Dict[str, str]