from typing import Optional class MailIntakeConfig: provider: str user_id: str readonly: bool credentials_path: Optional[str] token_path: Optional[str] def __init__(self, provider: str = ..., user_id: str = ..., readonly: bool = ..., credentials_path: Optional[str] = ..., token_path: Optional[str] = ...) -> None: ...