admin-netresult-ding-talk-workflow-process-instances-output.ts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 { DingTalkWorkflowProcessInstancesOutput } from './ding-talk-workflow-process-instances-output';
  14. /**
  15. * 全局返回结果
  16. *
  17. * @export
  18. * @interface AdminNETResultDingTalkWorkflowProcessInstancesOutput
  19. */
  20. export interface AdminNETResultDingTalkWorkflowProcessInstancesOutput {
  21. /**
  22. * 状态码
  23. *
  24. * @type {number}
  25. * @memberof AdminNETResultDingTalkWorkflowProcessInstancesOutput
  26. */
  27. code?: number;
  28. /**
  29. * 类型success、warning、error
  30. *
  31. * @type {string}
  32. * @memberof AdminNETResultDingTalkWorkflowProcessInstancesOutput
  33. */
  34. type?: string | null;
  35. /**
  36. * 错误信息
  37. *
  38. * @type {string}
  39. * @memberof AdminNETResultDingTalkWorkflowProcessInstancesOutput
  40. */
  41. message?: string | null;
  42. /**
  43. * @type {DingTalkWorkflowProcessInstancesOutput}
  44. * @memberof AdminNETResultDingTalkWorkflowProcessInstancesOutput
  45. */
  46. result?: DingTalkWorkflowProcessInstancesOutput;
  47. /**
  48. * 附加数据
  49. *
  50. * @type {any}
  51. * @memberof AdminNETResultDingTalkWorkflowProcessInstancesOutput
  52. */
  53. extras?: any | null;
  54. /**
  55. * 时间
  56. *
  57. * @type {Date}
  58. * @memberof AdminNETResultDingTalkWorkflowProcessInstancesOutput
  59. */
  60. time?: Date;
  61. }