| 1234567891011121314151617181920 |
- package com.malk.service.dingtalk;
- import java.util.Map;
- /**
- * DingTalk work-notification delivery-result atomic client.
- */
- public interface DDClient_NoticeResult {
- /**
- * Query a work notification task delivery result.
- *
- * @apiNote https://open.dingtalk.com/document/orgapp/queries-the-results-of-sending-asynchronous-sent-work-notifications
- * @param access_token DingTalk application access token
- * @param task_id task identifier returned by asyncsend_v2
- * @return raw DingTalk result payload
- */
- Map getSendResult(String access_token, String task_id);
- }
|