/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
stubs/mailchimp3/__init__.pyi
38 строк
1 KB
Gabriel Fuentes
Black formatter staging (#23456)
05 окт 2025, 06:15
Не верифицирован
05 окт 2025, 06:15
62ec95a
Код
Авторство
О чём код?
from .mailchimpclient import MailChimpClient as MailChimpClient from typing import Any, Dict, List, Optional, TypedDict class ListsDataDict(TypedDict): members: List[Dict[str, Any]] update_existing: bool class MailChimp(MailChimpClient): lists: Lists = ... class Lists: members: ListMembers = ... def update_members( self, list_id: Optional[str], data: ListsDataDict ) -> Dict[str, Any]: ... class ListMembers: tags: MemberTags = ... def create( self, list_id: Optional[str], data: Dict[str, Any] ) -> Dict[str, Any]: ... def get( self, list_id: Optional[str], subscriber_hash: str, **queryparams: Any ) -> Dict[str, Any]: ... def update( self, list_id: Optional[str], subscriber_hash: str, data: Dict[str, Any] ) -> Dict[str, Any]: ... def delete_permanent( self, list_id: Optional[str], subscriber_hash: str, ) -> Dict[str, Any]: ... class MemberTags: def update( self, list_id: Optional[str], subscriber_hash: str, data: Dict[str, Any] ) -> Dict[str, Any]: ...