16 lines
597 B
Python
16 lines
597 B
Python
from collections.abc import Iterator
|
|
from typing import Any
|
|
|
|
from mail_intake.adapters.base import MailIntakeAdapter
|
|
from mail_intake.auth.base import MailIntakeAuthProvider
|
|
|
|
class MailIntakeGmailAdapter(MailIntakeAdapter):
|
|
def __init__(
|
|
self, auth_provider: MailIntakeAuthProvider[Any], user_id: str = ...
|
|
) -> None: ...
|
|
@property
|
|
def service(self) -> Any: ...
|
|
def iter_message_refs(self, query: str) -> Iterator[dict[str, str]]: ...
|
|
def fetch_message(self, message_id: str) -> dict[str, Any]: ...
|
|
def fetch_thread(self, thread_id: str) -> dict[str, Any]: ...
|