chat_pb.ts 630 B

123456789101112131415161718192021222324252627282930
  1. export interface CreateChatRoomParam{
  2. personId1?:string;
  3. /** 身份ID */
  4. personIdentifyID1?:string;
  5. /** 类型 */
  6. personType1?:string;
  7. personId2?:string;
  8. /** 身份ID */
  9. personIdentifyID2?:string;
  10. /** 类型 */
  11. personType2?:string;
  12. }
  13. export interface ReceiveRequest{
  14. method?:string;
  15. data?:any;
  16. id?:string;
  17. websocketTag?:string;
  18. personType?:string;
  19. personId?:string;
  20. }
  21. export interface ReceiveReply{
  22. }
  23. export interface CheckUserPartnerIsRelationshipReply{
  24. isBuildRelationship?:boolean;
  25. roomId?:number;
  26. }
  27. export interface RoomReply{
  28. roomId?:number;
  29. }