wx_helper_sdk/request.go
coward 9680512f0a 🎉
2024-01-05 11:54:25 +08:00

27 lines
593 B
Go

package wx_helper_sdk
// SetHook
// @description: 设置回调
type SetHook struct {
Port string `json:"port"`
Ip string `json:"ip"`
Url string `json:"url"`
Timeout string `json:"timeout"`
EnableHttp string `json:"enableHttp"`
}
// SendAtText
// @description: 发送群里圈人文本信息
type SendAtText struct {
Wxids string `json:"wxids"`
ChatRoomId string `json:"chatRoomId"`
Msg string `json:"msg"`
}
// SendText
// @description: 发送文本信息(私聊)
type SendText struct {
Wxid string `json:"wxid"`
Msg string `json:"msg"`
}