NIMSDK-AOS  9.16.0
ChatRoomTagsInfo.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.chatroom.model;
2 
3 import java.io.Serializable;
4 
8 public class ChatRoomTagsInfo implements Serializable{
9 
13  private String tags;
17  private String notifyTargetTags;
21  private Boolean needNotify;
22 
26  private String ext;
27 
28  public ChatRoomTagsInfo() {
29  }
30 
31  public ChatRoomTagsInfo(String tags, String notifyTargetTags, Boolean needNotify,
32  String ext) {
33  this.tags = tags;
34  this.notifyTargetTags = notifyTargetTags;
35  this.needNotify = needNotify;
36  this.ext = ext;
37  }
38 
39  public String getTags() {
40  return tags;
41  }
42 
43  public void setTags(String tags) {
44  this.tags = tags;
45  }
46 
47  public String getNotifyTargetTags() {
48  return notifyTargetTags;
49  }
50 
51  public void setNotifyTargetTags(String notifyTargetTags) {
52  this.notifyTargetTags = notifyTargetTags;
53  }
54 
55  public Boolean getNeedNotify() {
56  return needNotify;
57  }
58 
59  public void setNeedNotify(Boolean needNotify) {
60  this.needNotify = needNotify;
61  }
62 
63  public String getExt() {
64  return ext;
65  }
66 
67  public void setExt(String ext) {
68  this.ext = ext;
69  }
70 }
ChatRoomTagsInfo(String tags, String notifyTargetTags, Boolean needNotify, String ext)