consts.go 442 B

123456789101112131415161718192021
  1. package message
  2. // MsgType 基本消息类型
  3. type MsgType string
  4. // EventType 事件类型
  5. type EventType string
  6. // InfoType 第三方平台授权事件类型
  7. type InfoType string
  8. const (
  9. //MsgTypeText 文本消息
  10. MsgTypeText MsgType = "text"
  11. //MsgTypeImage 图片消息
  12. MsgTypeImage = "image"
  13. //MsgTypeLink 图文链接
  14. MsgTypeLink = "link"
  15. //MsgTypeMiniProgramPage 小程序卡片
  16. MsgTypeMiniProgramPage = "miniprogrampage"
  17. )