10 lines
344 B
Python
10 lines
344 B
Python
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: ...
|