DDClient_NoticeResult.java 603 B

1234567891011121314151617181920
  1. package com.malk.service.dingtalk;
  2. import java.util.Map;
  3. /**
  4. * DingTalk work-notification delivery-result atomic client.
  5. */
  6. public interface DDClient_NoticeResult {
  7. /**
  8. * Query a work notification task delivery result.
  9. *
  10. * @apiNote https://open.dingtalk.com/document/orgapp/queries-the-results-of-sending-asynchronous-sent-work-notifications
  11. * @param access_token DingTalk application access token
  12. * @param task_id task identifier returned by asyncsend_v2
  13. * @return raw DingTalk result payload
  14. */
  15. Map getSendResult(String access_token, String task_id);
  16. }