Files
kittycad.py/kittycad/models/update_member_to_org_body.py
zoo-github-actions-auth[bot] 8bebb40c9f Update api spec (#186)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-01-16 15:04:35 -08:00

13 lines
248 B
Python

from pydantic import BaseModel, ConfigDict
from ..models.org_role import OrgRole
class UpdateMemberToOrgBody(BaseModel):
"""Data for updating a member of an org."""
role: OrgRole
model_config = ConfigDict(protected_namespaces=())