linkage_action.py 556 B

123456789101112
  1. class LinkageAction:
  2. def __init__(self,
  3. wechat_service: int=0,
  4. short_msg: int=0,
  5. tel_call: int=0,
  6. voip_call: int=0,
  7. email: int=0):
  8. self.wechat_service_ = wechat_service # 微信服务号推送
  9. self.short_msg_ = short_msg # 短信
  10. self.tel_call_ = tel_call # 电话
  11. self.voip_call_ = voip_call # VOIP语音通话
  12. self.email_ = email # 电子邮件