Files
sdk-notion/notion/orm/accessors/__init__.py
T

9 lines
193 B
Python
Raw Normal View History

from .PageProperty import PageProperty as _PageProperty
class _Acessors:
def __init__(self) -> None:
self.PageProperty = _PageProperty
Acessors = _Acessors
__all__ = ["Acessors"]