Files
sdk-notion/notion/schemas/responses/users/Person.py
T

12 lines
305 B
Python
Raw Normal View History

from ....schemas.dto import BaseModelSdk
from pydantic import ConfigDict
from .type.Person import Person as _Person
class Person(BaseModelSdk):
model_config = ConfigDict(title="Notion_Responses_Users_Person")
id: str
type: str = "person"
person: _Person
name: str
avatar_url: str