(
self, email: str, message_id: str, body: Body, *, idempotency_key: Optional[str] = None
)
| 333 | ) |
| 334 | |
| 335 | async def forward( |
| 336 | self, email: str, message_id: str, body: Body, *, idempotency_key: Optional[str] = None |
| 337 | ) -> SendResultView: |
| 338 | req = _coerce(ForwardRequest, body) |
| 339 | return await self._c._write_keyed( |
| 340 | lambda h: self._api.forward_message(email, message_id, req, _headers=h), |
| 341 | idempotency_key, |
| 342 | ) |
| 343 | |
| 344 | async def approve( |
| 345 | self, |
nothing calls this directly
no test coverage detected