stopMatchRuleFromPartner.d.ts 736 B

12345678910111213141516171819202122
  1. /**
  2. * 停止匹配打卡规则 请求参数定义
  3. * @apiName biz.pbp.stopMatchRuleFromPartner
  4. */
  5. export interface IBizPbpStopMatchRuleFromPartnerParams {
  6. /** 业务实例唯一标识 */
  7. bizInstId: string;
  8. }
  9. /**
  10. * 停止匹配打卡规则 返回结果定义
  11. * @apiName biz.pbp.stopMatchRuleFromPartner
  12. */
  13. export interface IBizPbpStopMatchRuleFromPartnerResult {
  14. }
  15. /**
  16. * 停止匹配打卡规则
  17. * @apiName biz.pbp.stopMatchRuleFromPartner
  18. * @supportVersion ios: 5.1.10 android: 5.1.10
  19. * @author Android;序望,iOS:度尽
  20. */
  21. export declare function stopMatchRuleFromPartner$(params: IBizPbpStopMatchRuleFromPartnerParams): Promise<IBizPbpStopMatchRuleFromPartnerResult>;
  22. export default stopMatchRuleFromPartner$;