get-ding-talk-current-employees-list-input.ts 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * DingTalk
  5. * 集成钉钉开放平台<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. *
  9. *
  10. * NOTE: This class is auto generated by the swagger code generator program.
  11. * https://github.com/swagger-api/swagger-codegen.git
  12. * Do not edit the class manually.
  13. */
  14. /**
  15. * 获取在职员工列表参数
  16. *
  17. * @export
  18. * @interface GetDingTalkCurrentEmployeesListInput
  19. */
  20. export interface GetDingTalkCurrentEmployeesListInput {
  21. /**
  22. * 在职员工状态筛选,可以查询多个状态。不同状态之间使用英文逗号分隔。2:试用期、3:正式、5:待离职、-1:无状态
  23. *
  24. * @type {string}
  25. * @memberof GetDingTalkCurrentEmployeesListInput
  26. */
  27. statusList?: string | null;
  28. /**
  29. * 分页游标,从0开始。根据返回结果里的next_cursor是否为空来判断是否还有下一页,且再次调用时offset设置成next_cursor的值。
  30. *
  31. * @type {number}
  32. * @memberof GetDingTalkCurrentEmployeesListInput
  33. */
  34. offset?: number;
  35. /**
  36. * 分页大小,最大50。
  37. *
  38. * @type {number}
  39. * @memberof GetDingTalkCurrentEmployeesListInput
  40. */
  41. size?: number;
  42. }