NIMSDK-AOS  9.19.0
MsgThreadOption.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.msg.model;
2 
3 import java.io.Serializable;
4 
5 public class MsgThreadOption implements Serializable {
6 
7  /** 被回复消息的消息发送者 */
8  private String replyMsgFromAccount = "";
9 
10  /** 被回复消息的消息接受者,群的话是tid */
11  private String replyMsgToAccount = "";
12 
13  /** 被回复消息的消息发送时间 */
14  private long replyMsgTime;
15 
16  /** 被回复消息的消息ServerID */
17  private long replyMsgIdServer;
18 
19  /** 被回复消息的UUID */
20  private String replyMsgIdClient = "";
21 
22  /** thread消息的消息发送者 */
23  private String threadMsgFromAccount = "";
24 
25  /** thread消息的消息接受者,群的话是tid */
26  private String threadMsgToAccount = "";
27 
28  /** thread消息的消息发送时间 */
29  private long threadMsgTime;
30 
31  /** thread消息的消息ServerID */
32  private long threadMsgIdServer;
33 
34  /** thread消息的UUID */
35  private String threadMsgIdClient = "";
36 
37  public String getReplyMsgFromAccount() {
38  return replyMsgFromAccount;
39  }
40 
41  public void setReplyMsgFromAccount(String replyMsgFromAccount) {
42  this.replyMsgFromAccount = replyMsgFromAccount;
43  }
44 
45  public String getReplyMsgToAccount() {
46  return replyMsgToAccount;
47  }
48 
49  public void setReplyMsgToAccount(String replyMsgToAccount) {
50  this.replyMsgToAccount = replyMsgToAccount;
51  }
52 
53  public long getReplyMsgTime() {
54  return replyMsgTime;
55  }
56 
57  public void setReplyMsgTime(long replyMsgTime) {
58  this.replyMsgTime = replyMsgTime;
59  }
60 
61  public long getReplyMsgIdServer() {
62  return replyMsgIdServer;
63  }
64 
65  public void setReplyMsgIdServer(long replyMsgIdServer) {
66  this.replyMsgIdServer = replyMsgIdServer;
67  }
68 
69  public String getReplyMsgIdClient() {
70  return replyMsgIdClient;
71  }
72 
73  public void setReplyMsgIdClient(String replyMsgIdClient) {
74  this.replyMsgIdClient = replyMsgIdClient;
75  }
76 
77  public String getThreadMsgFromAccount() {
78  return threadMsgFromAccount;
79  }
80 
81  public void setThreadMsgFromAccount(String threadMsgFromAccount) {
82  this.threadMsgFromAccount = threadMsgFromAccount;
83  }
84 
85  public String getThreadMsgToAccount() {
86  return threadMsgToAccount;
87  }
88 
89  public void setThreadMsgToAccount(String threadMsgToAccount) {
90  this.threadMsgToAccount = threadMsgToAccount;
91  }
92 
93  public long getThreadMsgTime() {
94  return threadMsgTime;
95  }
96 
97  public void setThreadMsgTime(long threadMsgTime) {
98  this.threadMsgTime = threadMsgTime;
99  }
100 
101  public long getThreadMsgIdServer() {
102  return threadMsgIdServer;
103  }
104 
105  public void setThreadMsgIdServer(long threadMsgIdServer) {
106  this.threadMsgIdServer = threadMsgIdServer;
107  }
108 
109  public String getThreadMsgIdClient() {
110  return threadMsgIdClient;
111  }
112 
113  public void setThreadMsgIdClient(String threadMsgIdClient) {
114  this.threadMsgIdClient = threadMsgIdClient;
115  }
116 }
void setThreadMsgToAccount(String threadMsgToAccount)
void setReplyMsgIdClient(String replyMsgIdClient)
void setThreadMsgIdClient(String threadMsgIdClient)
void setReplyMsgFromAccount(String replyMsgFromAccount)
void setReplyMsgToAccount(String replyMsgToAccount)
void setThreadMsgFromAccount(String threadMsgFromAccount)