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>
This commit is contained in:
committed by
GitHub
parent
ec68e67645
commit
8bebb40c9f
22
kittycad/models/org_details.py
Normal file
22
kittycad/models/org_details.py
Normal file
@ -0,0 +1,22 @@
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
|
||||
class OrgDetails(BaseModel):
|
||||
"""The user-modifiable parts of an organization."""
|
||||
|
||||
allow_users_in_domain_to_auto_join: Optional[bool] = None
|
||||
|
||||
billing_email: Optional[str] = None
|
||||
|
||||
domain: Optional[str] = None
|
||||
|
||||
image: Optional[str] = None
|
||||
|
||||
name: Optional[str] = None
|
||||
|
||||
phone: Optional[str] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user