UnPin 将联系人取消置顶
()
| 175 | |
| 176 | // UnPin 将联系人取消置顶 |
| 177 | func (u *User) UnPin() error { |
| 178 | opt := &CallerWebWxRelationPinOptions{ |
| 179 | BaseRequest: u.self.bot.Storage.Request, |
| 180 | User: u, |
| 181 | Op: 0, |
| 182 | } |
| 183 | return u.self.bot.Caller.WebWxRelationPin(u.Self().Bot().Context(), opt) |
| 184 | } |
| 185 | |
| 186 | // IsPin 判断当前联系人(好友、群组、公众号)是否为置顶状态 |
| 187 | func (u *User) IsPin() bool { |