(messageId: string, reason?: string)
| 339 | } |
| 340 | |
| 341 | async rejectMessage(messageId: string, reason?: string): Promise<RejectResultView> { |
| 342 | return this.sdk.reviews.reject( |
| 343 | messageId, |
| 344 | reason !== undefined ? { reason } : {}, |
| 345 | ); |
| 346 | } |
| 347 | |
| 348 | // ── Domains ───────────────────────────────────────────────────── |
| 349 |
no test coverage detected