<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""
typing module
"""

from typing import TypedDict, Optional


class AccountSituationType(TypedDict, total=False):
    """
    typing class for Accounts
    """

    id: int


class AccountType(TypedDict, total=False):
    """
    typing class for Accounts
    """

    name: str
    id: int
    situation: Optional[AccountSituationType]
</pre></body></html>