Files
mail-intake/mail_intake/config.pyi

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: ...