WCustomerGroupPushNotice.proto 715 B

123456789101112131415161718192021222324
  1. syntax = "proto3";
  2. package Im.Scrm.Ww.Proto; //命名空间约定
  3. option go_package = "./workphone/wecom";
  4. import "WTransport.proto";
  5. message CustomerGroupPushNoticeMessage {
  6. int64 WxId = 1; // 设备企业WX号
  7. bool Success = 2; // 是否成功
  8. repeated CustomerGroupMessage Groups = 3; // 客户群列表
  9. int64 TaskId = 4;
  10. }
  11. message CustomerGroupMessage {
  12. int64 Id = 1; // 会话id
  13. int64 RemoteId = 2; // 会话RemoteId
  14. string Name = 3; // 群名
  15. string Avatar = 4;
  16. int64 Owner = 6; //群主Id
  17. int32 CreateTime = 7; //创建时间
  18. int32 UpdateTime = 8; // 最后更新时间
  19. int32 Flag = 10; //
  20. int32 MemberCnt = 11; //群成员数
  21. }