* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
15 lines
253 B
Python
15 lines
253 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.org_role import OrgRole
|
|
|
|
|
|
class AddOrgMember(BaseModel):
|
|
"""Data for adding a member to an org."""
|
|
|
|
email: str
|
|
|
|
role: OrgRole
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|