WWxFriendPushNotice.proto 611 B

123456789101112131415161718192021
  1. syntax = "proto3";
  2. package Im.Scrm.Ww.Proto; //命名空间约定
  3. option go_package = "./workphone/wecom";
  4. import "WTransport.proto";
  5. message WxFriendPushNoticeMessage {
  6. int64 WxId = 1; // 设备企业WX号
  7. repeated WxFriendMessage Friends = 2; // 好友信息模型 多个
  8. int32 Size = 3;
  9. int32 Count = 4;
  10. int32 Page = 5;
  11. int64 TaskId = 6;
  12. }
  13. message WxFriendMessage {
  14. string Name = 1; // 昵称
  15. string Avatar = 2; // 头像
  16. string OpenId = 3; // openId
  17. string UnionId = 4; // unionId contactKey
  18. bool HasSent = 5; // 是否已发送过邀请
  19. }