NIMSDK-AOS  9.19.0
AddFriendData.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.friend.model;
2 
4 
5 import java.io.Serializable;
6 
7 /**
8  * 好友请求信息
9  */
10 public class AddFriendData implements Serializable {
11 
12  private String account;
13 
14  private VerifyType verifyType;
15 
16  private String msg;
17 
18  public AddFriendData(String account, VerifyType verifyType) {
19  this.account = account;
20  this.verifyType = verifyType;
21  }
22 
23  public AddFriendData(String account, VerifyType verifyType, String msg) {
24  this.account = account;
25  this.verifyType = verifyType;
26  this.msg = msg;
27  }
28 
29  /**
30  * 获取帐号
31  * @return 帐号
32  */
33  public String getAccount() {
34  return account;
35  }
36 
37  /**
38  * 获取好友请求方式
39  * @return 好友请求方式
40  */
42  return verifyType;
43  }
44 
45  /**
46  * 获取好友请求附言
47  * @return 好友请求附言
48  */
49  public String getMsg() {
50  return msg;
51  }
52 }
String getMsg()
获取好友请求附言
AddFriendData(String account, VerifyType verifyType, String msg)
VerifyType getVerifyType()
获取好友请求方式
AddFriendData(String account, VerifyType verifyType)