123456789101112 |
- class LinkageAction:
- def __init__(self,
- wechat_service: int=0,
- short_msg: int=0,
- tel_call: int=0,
- voip_call: int=0,
- email: int=0):
- self.wechat_service_ = wechat_service # 微信服务号推送
- self.short_msg_ = short_msg # 短信
- self.tel_call_ = tel_call # 电话
- self.voip_call_ = voip_call # VOIP语音通话
- self.email_ = email # 电子邮件
|