* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
13 lines
248 B
Python
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=())
|