|
@@ -1993,6 +1993,10 @@ type AddFriendByPhoneReq struct {
|
|
CallbackURL string `json:"callback_url,optional"`
|
|
CallbackURL string `json:"callback_url,optional"`
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// swagger:model NullReq
|
|
|
|
+type NullReq struct {
|
|
|
|
+}
|
|
|
|
+
|
|
// 以下是API请求类型
|
|
// 以下是API请求类型
|
|
// swagger:model CompApiReq
|
|
// swagger:model CompApiReq
|
|
type CompApiReq struct {
|
|
type CompApiReq struct {
|
|
@@ -4712,3 +4716,13 @@ type LoginResp struct {
|
|
// The log in information | 登陆返回的数据信息
|
|
// The log in information | 登陆返回的数据信息
|
|
Data LoginInfo `json:"data"`
|
|
Data LoginInfo `json:"data"`
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+// add_friend_by_phone api接口请求值
|
|
|
|
+// swagger:model AddWechatFriendLogInfo
|
|
|
|
+type AddWechatFriendLogInfo struct {
|
|
|
|
+ Type int `json:"type,options=1|3,default=1"`
|
|
|
|
+ WeChatIds []string `json:"wechat_ids,optional,omitempty"`
|
|
|
|
+ Phones []string `json:"phones"`
|
|
|
|
+ Message string `json:"message"`
|
|
|
|
+ CallbackURL string `json:"callback_url,optional"`
|
|
|
|
+}
|