chat_pb.ts 752 B

1234567891011121314151617181920212223242526272829303132333435
  1. export interface OnlinePersonListReply{
  2. list?:Array<OnlinePersonInfo>;
  3. }
  4. export interface OnlinePersonInfo{
  5. /** 查询目标的ID */
  6. personID?:string;
  7. /** 类型 */
  8. personType?:string;
  9. /** 昵称 */
  10. nickname?:string;
  11. /** 头像链接 */
  12. avatarUrl?:string;
  13. /** 性别 */
  14. sex?:number;
  15. /** 年龄 */
  16. age?:number;
  17. /** 星座 */
  18. constellation?:string;
  19. /** 签名 */
  20. signature?:string;
  21. /** 省 */
  22. province?:string;
  23. /** 市 */
  24. city?:string;
  25. /** 区 */
  26. area?:string;
  27. }
  28. export interface CheckUserPartnerIsRelationshipReply{
  29. isBuildRelationship?:boolean;
  30. roomId?:number;
  31. }
  32. export interface CreateUserPartnerIsRelationshipReply{
  33. roomId?:number;
  34. }