Update api spec (#182)
* 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:
@ -3,15 +3,18 @@ from typing import Optional
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
from ..models.block_reason import BlockReason
|
||||
from ..models.uuid import Uuid
|
||||
|
||||
|
||||
class ExtendedUser(BaseModel):
|
||||
"""Extended user information.
|
||||
|
||||
This is mostly used for internal purposes. It returns a mapping of the user's information, including that of our third party services we use for users: MailChimp, Stripe, and Front
|
||||
This is mostly used for internal purposes. It returns a mapping of the user's information, including that of our third party services we use for users: MailChimp | Stripe
|
||||
"""
|
||||
|
||||
block: Optional[BlockReason] = None
|
||||
|
||||
company: Optional[str] = None
|
||||
|
||||
created_at: datetime.datetime
|
||||
|
Reference in New Issue
Block a user