15 lines
358 B
Python
15 lines
358 B
Python
class MailIntakeConfig:
|
|
provider: str
|
|
user_id: str
|
|
readonly: bool
|
|
credentials_path: str | None
|
|
token_path: str | None
|
|
def __init__(
|
|
self,
|
|
provider: str = ...,
|
|
user_id: str = ...,
|
|
readonly: bool = ...,
|
|
credentials_path: str | None = ...,
|
|
token_path: str | None = ...,
|
|
) -> None: ...
|