ding-talk-send-interactive-cards-input.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* tslint:disable */
  2. /**
  3. * 钉钉开放平台
  4. * 集成钉钉开放平台<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  5. *
  6. * OpenAPI spec version: 1.0.0
  7. *
  8. *
  9. * NOTE: This class is auto generated by the swagger code generator program.
  10. * https://github.com/swagger-api/swagger-codegen.git
  11. * Do not edit the class manually.
  12. */
  13. import { DingTalkCardData } from './ding-talk-card-data';
  14. import { DingTalkConversationTypeEnum } from './ding-talk-conversation-type-enum';
  15. /**
  16. *
  17. *
  18. * @export
  19. * @interface DingTalkSendInteractiveCardsInput
  20. */
  21. export interface DingTalkSendInteractiveCardsInput {
  22. /**
  23. * 互动卡片的消息模板Id
  24. *
  25. * @type {string}
  26. * @memberof DingTalkSendInteractiveCardsInput
  27. */
  28. cardTemplateId: string;
  29. /**
  30. * 群Id
  31. *
  32. * @type {string}
  33. * @memberof DingTalkSendInteractiveCardsInput
  34. */
  35. openConversationId?: string | null;
  36. /**
  37. * 接收人userId列表
  38. *
  39. * @type {Array<string>}
  40. * @memberof DingTalkSendInteractiveCardsInput
  41. */
  42. receiverUserIdList: Array<string>;
  43. /**
  44. * 唯一标示卡片的外部编码
  45. *
  46. * @type {string}
  47. * @memberof DingTalkSendInteractiveCardsInput
  48. */
  49. outTrackId: string;
  50. /**
  51. * 机器人的编码
  52. *
  53. * @type {string}
  54. * @memberof DingTalkSendInteractiveCardsInput
  55. */
  56. robotCode?: string | null;
  57. /**
  58. * @type {DingTalkConversationTypeEnum}
  59. * @memberof DingTalkSendInteractiveCardsInput
  60. */
  61. conversationType: DingTalkConversationTypeEnum;
  62. /**
  63. * 卡片回调时的路由Key,用于查询注册的callbackUrl
  64. *
  65. * @type {string}
  66. * @memberof DingTalkSendInteractiveCardsInput
  67. */
  68. callbackRouteKey?: string | null;
  69. /**
  70. * @type {DingTalkCardData}
  71. * @memberof DingTalkSendInteractiveCardsInput
  72. */
  73. cardData: DingTalkCardData;
  74. }