file_name stringlengths 6 86 | file_path stringlengths 45 249 | content stringlengths 47 6.26M | file_size int64 47 6.26M | language stringclasses 1 value | extension stringclasses 1 value | repo_name stringclasses 767 values | repo_stars int64 8 14.4k | repo_forks int64 0 1.17k | repo_open_issues int64 0 788 | repo_created_at stringclasses 767 values | repo_pushed_at stringclasses 767 values |
|---|---|---|---|---|---|---|---|---|---|---|---|
GProForumChannel.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProForumChannel.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProForumChannel {
long channelId;
String channelName;
long endColor;
String guildFaceUrl;
long guildId;
String guildName;
String hotValueTitle;
int index;
String joinSign;
long startColor;
int type;
public GProForumChannel() {
this.guildName = "";
this.channelName = "";
this.hotValueTitle = "";
this.guildFaceUrl = "";
this.joinSign = "";
}
public long getChannelId() {
return this.channelId;
}
public String getChannelName() {
return this.channelName;
}
public long getEndColor() {
return this.endColor;
}
public String getGuildFaceUrl() {
return this.guildFaceUrl;
}
public long getGuildId() {
return this.guildId;
}
public String getGuildName() {
return this.guildName;
}
public String getHotValueTitle() {
return this.hotValueTitle;
}
public int getIndex() {
return this.index;
}
public String getJoinSign() {
return this.joinSign;
}
public long getStartColor() {
return this.startColor;
}
public int getType() {
return this.type;
}
public String toString() {
return "GProForumChannel{index=" + this.index + ",guildId=" + this.guildId + ",guildName=" + this.guildName + ",channelId=" + this.channelId + ",channelName=" + this.channelName + ",hotValueTitle=" + this.hotValueTitle + ",type=" + this.type + ",guildFaceUrl=" + this.guildFaceUrl + ",startColor=" + this.startColor + ",endColor=" + this.endColor + ",joinSign=" + this.joinSign + ",}";
}
public GProForumChannel(int i2, long j2, String str, long j3, String str2, String str3, int i3, String str4, long j4, long j5, String str5) {
this.guildName = "";
this.channelName = "";
this.hotValueTitle = "";
this.guildFaceUrl = "";
this.joinSign = "";
this.index = i2;
this.guildId = j2;
this.guildName = str;
this.channelId = j3;
this.channelName = str2;
this.hotValueTitle = str3;
this.type = i3;
this.guildFaceUrl = str4;
this.startColor = j4;
this.endColor = j5;
this.joinSign = str5;
}
}
| 2,385 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
CacheOrderType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/CacheOrderType.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public enum CacheOrderType {
KTIMEASC,
KTIMEDESC,
KSIZEASC,
KSIZEDESC
}
| 193 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
FileCacheInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/FileCacheInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class FileCacheInfo {
long elementId;
String elementIdStr;
long fileKey;
String fileName;
long fileSize;
long fileTime;
CacheFileType fileType;
String path;
String previewPath;
String senderId;
String senderName;
public FileCacheInfo() {
this.elementIdStr = "";
this.fileType = CacheFileType.values()[0];
this.path = "";
this.fileName = "";
this.senderId = "";
this.previewPath = "";
this.senderName = "";
}
public long getElementId() {
return this.elementId;
}
public String getElementIdStr() {
return this.elementIdStr;
}
public long getFileKey() {
return this.fileKey;
}
public String getFileName() {
return this.fileName;
}
public long getFileSize() {
return this.fileSize;
}
public long getFileTime() {
return this.fileTime;
}
public CacheFileType getFileType() {
return this.fileType;
}
public String getPath() {
return this.path;
}
public String getPreviewPath() {
return this.previewPath;
}
public String getSenderId() {
return this.senderId;
}
public String getSenderName() {
return this.senderName;
}
public String toString() {
return "FileCacheInfo{fileSize=" + this.fileSize + ",fileTime=" + this.fileTime + ",fileKey=" + this.fileKey + ",elementId=" + this.elementId + ",elementIdStr=" + this.elementIdStr + ",fileType=" + this.fileType + ",path=" + this.path + ",fileName=" + this.fileName + ",senderId=" + this.senderId + ",previewPath=" + this.previewPath + ",senderName=" + this.senderName + ",}";
}
public FileCacheInfo(long j2, long j3, long j4, long j5, String str, CacheFileType cacheFileType, String str2, String str3, String str4, String str5, String str6) {
this.elementIdStr = "";
this.fileType = CacheFileType.values()[0];
this.path = "";
this.fileName = "";
this.senderId = "";
this.previewPath = "";
this.senderName = "";
this.fileSize = j2;
this.fileTime = j3;
this.fileKey = j4;
this.elementId = j5;
this.elementIdStr = str;
this.fileType = cacheFileType;
this.path = str2;
this.fileName = str3;
this.senderId = str4;
this.previewPath = str5;
this.senderName = str6;
}
}
| 2,585 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
TransGroupFileResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/TransGroupFileResult.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class TransGroupFileResult {
GroupFileCommonResult result;
int saveBusId;
String saveFilePath;
public TransGroupFileResult() {
this.result = new GroupFileCommonResult();
this.saveFilePath = "";
}
public GroupFileCommonResult getResult() {
return this.result;
}
public int getSaveBusId() {
return this.saveBusId;
}
public String getSaveFilePath() {
return this.saveFilePath;
}
public String toString() {
return "TransGroupFileResult{result=" + this.result + ",saveBusId=" + this.saveBusId + ",saveFilePath=" + this.saveFilePath + ",}";
}
public TransGroupFileResult(GroupFileCommonResult groupFileCommonResult, int i2, String str) {
this.result = new GroupFileCommonResult();
this.saveFilePath = "";
this.result = groupFileCommonResult;
this.saveBusId = i2;
this.saveFilePath = str;
}
} | 1,002 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
TotalLike.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/TotalLike.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes.dex */
public final class TotalLike {
boolean isClicked;
int likeCount;
public TotalLike() {
}
public boolean getIsClicked() {
return this.isClicked;
}
public int getLikeCount() {
return this.likeCount;
}
public String toString() {
return "TotalLike{likeCount=" + this.likeCount + ",isClicked=" + this.isClicked + ",}";
}
public TotalLike(int i2, boolean z) {
this.likeCount = i2;
this.isClicked = z;
}
}
| 595 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchGroupChatInfoBusinessType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchGroupChatInfoBusinessType.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes.dex */
public enum SearchGroupChatInfoBusinessType {
KSEARCHGROUPCHATINFOBUSINESSTYPEUNKNOWN,
KSEARCHGROUPCHATINFOBUSINESSTYPEDESKTOP
}
| 241 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchResultItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchResultItem.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchResultItem {
String extension;
String jmpUrl;
ArrayList<Mean> means;
String name;
String picUrl;
String resultId;
public SearchResultItem() {
this.resultId = "";
this.name = "";
this.picUrl = "";
this.jmpUrl = "";
this.means = new ArrayList<>();
this.extension = "";
}
public String getExtension() {
return this.extension;
}
public String getJmpUrl() {
return this.jmpUrl;
}
public ArrayList<Mean> getMeans() {
return this.means;
}
public String getName() {
return this.name;
}
public String getPicUrl() {
return this.picUrl;
}
public String getResultId() {
return this.resultId;
}
public String toString() {
return "SearchResultItem{resultId=" + this.resultId + ",name=" + this.name + ",picUrl=" + this.picUrl + ",jmpUrl=" + this.jmpUrl + ",means=" + this.means + ",extension=" + this.extension + ",}";
}
public SearchResultItem(String str, String str2, String str3, String str4, ArrayList<Mean> arrayList, String str5) {
this.resultId = "";
this.name = "";
this.picUrl = "";
this.jmpUrl = "";
this.means = new ArrayList<>();
this.extension = "";
this.resultId = str;
this.name = str2;
this.picUrl = str3;
this.jmpUrl = str4;
this.means = arrayList;
this.extension = str5;
}
}
| 1,641 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProNoticeJump.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProNoticeJump.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProNoticeJump {
String iconUrl;
int iconUrlIndex;
int placeHolderIndex;
String text;
String url;
public GProNoticeJump() {
this.text = "";
this.url = "";
this.iconUrl = "";
}
public String getIconUrl() {
return this.iconUrl;
}
public int getIconUrlIndex() {
return this.iconUrlIndex;
}
public int getPlaceHolderIndex() {
return this.placeHolderIndex;
}
public String getText() {
return this.text;
}
public String getUrl() {
return this.url;
}
public String toString() {
return "GProNoticeJump{text=" + this.text + ",url = " + this.url + ",placeHolderIndex=" + this.placeHolderIndex + ",iconUrl=" + this.iconUrl + ",iconUrlIndex=" + this.iconUrlIndex + ",}";
}
public GProNoticeJump(String str, String str2, int i2, String str3, int i3) {
this.text = "";
this.url = "";
this.iconUrl = "";
this.text = str;
this.url = str2;
this.placeHolderIndex = i2;
this.iconUrl = str3;
this.iconUrlIndex = i3;
}
}
| 1,231 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
Feed.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/Feed.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class Feed implements Serializable {
String channelId;
FeedChannelInfo channelInfo;
Integer commentCount;
ArrayList<CommentForRead> comments;
RichText contents;
long createTime;
Long createTimeNs;
EmotionReactionInfo emotionReaction;
String feedId;
Long feedSeq;
String guildId;
String id;
ArrayList<Image> images;
String patternInfo;
User poster;
long serialVersionUID;
RichText title;
TotalLike totalLike;
Long updateTime;
ArrayList<Video> videos;
Visitor visitorInfo;
public Feed() {
this.serialVersionUID = 1L;
this.feedId = "";
this.poster = new User();
}
public String getChannelId() {
return this.channelId;
}
public FeedChannelInfo getChannelInfo() {
return this.channelInfo;
}
public Integer getCommentCount() {
return this.commentCount;
}
public ArrayList<CommentForRead> getComments() {
return this.comments;
}
public RichText getContents() {
return this.contents;
}
public long getCreateTime() {
return this.createTime;
}
public Long getCreateTimeNs() {
return this.createTimeNs;
}
public EmotionReactionInfo getEmotionReaction() {
return this.emotionReaction;
}
public String getFeedId() {
return this.feedId;
}
public Long getFeedSeq() {
return this.feedSeq;
}
public String getGuildId() {
return this.guildId;
}
public String getId() {
return this.id;
}
public ArrayList<Image> getImages() {
return this.images;
}
public String getPatternInfo() {
return this.patternInfo;
}
public User getPoster() {
return this.poster;
}
public RichText getTitle() {
return this.title;
}
public TotalLike getTotalLike() {
return this.totalLike;
}
public Long getUpdateTime() {
return this.updateTime;
}
public ArrayList<Video> getVideos() {
return this.videos;
}
public Visitor getVisitorInfo() {
return this.visitorInfo;
}
public String toString() {
return "Feed{feedSeq=" + this.feedSeq + ",feedId=" + this.feedId + ",id=" + this.id + ",guildId=" + this.guildId + ",channelId=" + this.channelId + ",title=" + this.title + ",contents=" + this.contents + ",patternInfo=" + this.patternInfo + ",poster=" + this.poster + ",createTime=" + this.createTime + ",createTimeNs=" + this.createTimeNs + ",emotionReaction=" + this.emotionReaction + ",commentCount=" + this.commentCount + ",comments=" + this.comments + ",images=" + this.images + ",videos=" + this.videos + ",updateTime=" + this.updateTime + ",totalLike=" + this.totalLike + ",visitorInfo=" + this.visitorInfo + ",channelInfo=" + this.channelInfo + ",}";
}
public Feed(Long l2, String str, String str2, String str3, String str4, RichText richText, RichText richText2, String str5, User user, long j2, Long l3, EmotionReactionInfo emotionReactionInfo, Integer num, ArrayList<CommentForRead> arrayList, ArrayList<Image> arrayList2, ArrayList<Video> arrayList3, Long l4, TotalLike totalLike, Visitor visitor, FeedChannelInfo feedChannelInfo) {
this.serialVersionUID = 1L;
this.feedId = "";
this.poster = new User();
this.feedSeq = l2;
this.feedId = str;
this.id = str2;
this.guildId = str3;
this.channelId = str4;
this.title = richText;
this.contents = richText2;
this.patternInfo = str5;
this.poster = user;
this.createTime = j2;
this.createTimeNs = l3;
this.emotionReaction = emotionReactionInfo;
this.commentCount = num;
this.comments = arrayList;
this.images = arrayList2;
this.videos = arrayList3;
this.updateTime = l4;
this.totalLike = totalLike;
this.visitorInfo = visitor;
this.channelInfo = feedChannelInfo;
}
}
| 4,215 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProEnterChannleInfoResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProEnterChannleInfoResult.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProEnterChannleInfoResult {
int appId;
boolean defaultMute;
boolean globalMute;
byte[] pKey;
int screenShareBtnVisibleType;
byte[] trtcSig;
public GProEnterChannleInfoResult() {
this.trtcSig = new byte[0];
this.pKey = new byte[0];
}
public int getAppId() {
return this.appId;
}
public boolean getDefaultMute() {
return this.defaultMute;
}
public boolean getGlobalMute() {
return this.globalMute;
}
public byte[] getPKey() {
return this.pKey;
}
public int getScreenShareBtnVisibleType() {
return this.screenShareBtnVisibleType;
}
public byte[] getTrtcSig() {
return this.trtcSig;
}
public String toString() {
return "GProEnterChannleInfoResult{trtcSig=" + this.trtcSig + ",pKey=" + this.pKey + ",appId=" + this.appId + ",defaultMute=" + this.defaultMute + ",globalMute=" + this.globalMute + ",screenShareBtnVisibleType=" + this.screenShareBtnVisibleType + ",}";
}
public GProEnterChannleInfoResult(byte[] bArr, byte[] bArr2, int i2, boolean z, boolean z2, int i3) {
this.trtcSig = new byte[0];
this.pKey = new byte[0];
this.trtcSig = bArr;
this.pKey = bArr2;
this.appId = i2;
this.defaultMute = z;
this.globalMute = z2;
this.screenShareBtnVisibleType = i3;
}
}
| 1,503 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProBlockUserState.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProBlockUserState.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProBlockUserState {
ArrayList<Long> blockUserList;
public GProBlockUserState() {
this.blockUserList = new ArrayList<>();
}
public ArrayList<Long> getBlockUserList() {
return this.blockUserList;
}
public String toString() {
return "GProBlockUserState{blockUserList=" + this.blockUserList + ",}";
}
public GProBlockUserState(ArrayList<Long> arrayList) {
this.blockUserList = new ArrayList<>();
this.blockUserList = arrayList;
}
}
| 639 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProNoticeRedPoint.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProNoticeRedPoint.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProNoticeRedPoint {
int count;
int expireTs;
int muteSwitch;
int type;
public GProNoticeRedPoint() {
}
public int getCount() {
return this.count;
}
public int getExpireTs() {
return this.expireTs;
}
public int getMuteSwitch() {
return this.muteSwitch;
}
public int getType() {
return this.type;
}
public String toString() {
return "GProNoticeRedPoint{type=" + this.type + ",count=" + this.count + ",expireTs=" + this.expireTs + ",muteSwitch=" + this.muteSwitch + ",}";
}
public GProNoticeRedPoint(int i2, int i3, int i4, int i5) {
this.type = i2;
this.count = i3;
this.expireTs = i4;
this.muteSwitch = i5;
}
}
| 863 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupNotifyOperateType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupNotifyOperateType.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public enum GroupNotifyOperateType {
KUNSPECIFIED,
KAGREE,
KREFUSE,
KIGNORE,
KDELETE
}
| 212 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProPlayAddress.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProPlayAddress.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProPlayAddress {
Integer bitRate;
String formats;
String url;
public GProPlayAddress() {
}
public Integer getBitRate() {
return this.bitRate;
}
public String getFormats() {
return this.formats;
}
public String getUrl() {
return this.url;
}
public String toString() {
return "GProPlayAddress{url=" + this.url + ",bitRate=" + this.bitRate + ",formats=" + this.formats + ",}";
}
public GProPlayAddress(String str, Integer num, String str2) {
this.url = str;
this.bitRate = num;
this.formats = str2;
}
}
| 724 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGetRecommendTagListRsp.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGetRecommendTagListRsp.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProGetRecommendTagListRsp {
byte[] cookies;
GProRecommendExtInfo extInfo;
ArrayList<GProRecommendItem> recommendList;
public GProGetRecommendTagListRsp() {
this.recommendList = new ArrayList<>();
this.extInfo = new GProRecommendExtInfo();
this.cookies = new byte[0];
}
public byte[] getCookies() {
return this.cookies;
}
public GProRecommendExtInfo getExtInfo() {
return this.extInfo;
}
public ArrayList<GProRecommendItem> getRecommendList() {
return this.recommendList;
}
public String toString() {
return "GProGetRecommendTagListRsp{recommendList=" + this.recommendList + ",extInfo=" + this.extInfo + ",cookies=" + this.cookies + ",}";
}
public GProGetRecommendTagListRsp(ArrayList<GProRecommendItem> arrayList, GProRecommendExtInfo gProRecommendExtInfo, byte[] bArr) {
this.recommendList = new ArrayList<>();
this.extInfo = new GProRecommendExtInfo();
this.cookies = new byte[0];
this.recommendList = arrayList;
this.extInfo = gProRecommendExtInfo;
this.cookies = bArr;
}
}
| 1,278 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRecommendEntry.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRecommendEntry.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProRecommendEntry implements Serializable {
String key;
long serialVersionUID;
byte[] value;
public GProRecommendEntry() {
this.serialVersionUID = 1L;
this.key = "";
this.value = new byte[0];
}
public String getKey() {
return this.key;
}
public byte[] getValue() {
return this.value;
}
public String toString() {
return "GProRecommendEntry{key=" + this.key + ",value=" + this.value + ",}";
}
public GProRecommendEntry(String str, byte[] bArr) {
this.serialVersionUID = 1L;
this.key = "";
this.value = new byte[0];
this.key = str;
this.value = bArr;
}
}
| 830 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupMemberListChangeInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupMemberListChangeInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
import java.util.HashMap;
public final class GroupMemberListChangeInfo {
boolean hasNext;
boolean hasPrev;
ArrayList<GroupMemberInfoListId> ids;
HashMap<String, MemberInfo> infos;
String sceneId;
public GroupMemberListChangeInfo() {
this.sceneId = "";
this.ids = new ArrayList<>();
this.infos = new HashMap<>();
}
public boolean getHasNext() {
return this.hasNext;
}
public boolean getHasPrev() {
return this.hasPrev;
}
public ArrayList<GroupMemberInfoListId> getIds() {
return this.ids;
}
public HashMap<String, MemberInfo> getInfos() {
return this.infos;
}
public String getSceneId() {
return this.sceneId;
}
public String toString() {
return "GroupMemberListChangeInfo{sceneId=" + this.sceneId + ",ids=" + this.ids + ",infos=" + this.infos + ",hasPrev=" + this.hasPrev + ",hasNext=" + this.hasNext + ",}";
}
public GroupMemberListChangeInfo(String str, ArrayList<GroupMemberInfoListId> arrayList, HashMap<String, MemberInfo> hashMap, boolean z, boolean z2) {
this.sceneId = "";
this.ids = new ArrayList<>();
this.infos = new HashMap<>();
this.sceneId = str;
this.ids = arrayList;
this.infos = hashMap;
this.hasPrev = z;
this.hasNext = z2;
}
} | 1,452 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProConfigItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProConfigItem.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProConfigItem {
int configID;
int configStatus;
String desc;
public GProConfigItem() {
this.desc = "";
}
public int getConfigID() {
return this.configID;
}
public int getConfigStatus() {
return this.configStatus;
}
public String getDesc() {
return this.desc;
}
public String toString() {
return "GProConfigItem{configID=" + this.configID + ",configStatus=" + this.configStatus + ",desc=" + this.desc + ",}";
}
public GProConfigItem(int i2, int i3, String str) {
this.desc = "";
this.configID = i2;
this.configStatus = i3;
this.desc = str;
}
}
| 783 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProLiveGetAnchorPushInfoParams.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProLiveGetAnchorPushInfoParams.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProLiveGetAnchorPushInfoParams {
Long anchorId;
Long roomId;
public GProLiveGetAnchorPushInfoParams() {
}
public Long getAnchorId() {
return this.anchorId;
}
public Long getRoomId() {
return this.roomId;
}
public String toString() {
return "GProLiveGetAnchorPushInfoParams{roomId=" + this.roomId + ",anchorId=" + this.anchorId + ",}";
}
public GProLiveGetAnchorPushInfoParams(Long l2, Long l3) {
this.roomId = l2;
this.anchorId = l3;
}
}
| 633 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProExposeItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProExposeItem.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProExposeItem {
GProItemCbData callback;
String id;
public GProExposeItem() {
this.id = "";
this.callback = new GProItemCbData();
}
public GProItemCbData getCallback() {
return this.callback;
}
public String getId() {
return this.id;
}
public String toString() {
return "GProExposeItem{id=" + this.id + ",callback=" + this.callback + ",}";
}
public GProExposeItem(String str, GProItemCbData gProItemCbData) {
this.id = "";
this.callback = new GProItemCbData();
this.id = str;
this.callback = gProItemCbData;
}
}
| 739 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
PttFormatType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/PttFormatType.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public enum PttFormatType {
KAMR,
KSILK
}
| 132 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGiftInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGiftInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes22.dex */
public final class GProGiftInfo implements Serializable {
int allComboCnt;
boolean comboOver;
long comboSeq;
int effectLevel;
int giftId;
String giftName;
int giftNum;
long giftPrice;
int giftType;
int materialId;
int sendType;
long serialVersionUID;
public GProGiftInfo() {
this.serialVersionUID = 1L;
this.giftName = "";
}
public int getAllComboCnt() {
return this.allComboCnt;
}
public boolean getComboOver() {
return this.comboOver;
}
public long getComboSeq() {
return this.comboSeq;
}
public int getEffectLevel() {
return this.effectLevel;
}
public int getGiftId() {
return this.giftId;
}
public String getGiftName() {
return this.giftName;
}
public int getGiftNum() {
return this.giftNum;
}
public long getGiftPrice() {
return this.giftPrice;
}
public int getGiftType() {
return this.giftType;
}
public int getMaterialId() {
return this.materialId;
}
public int getSendType() {
return this.sendType;
}
public String toString() {
return "GProGiftInfo{giftType=" + this.giftType + ",giftId=" + this.giftId + ",giftName=" + this.giftName + ",giftNum=" + this.giftNum + ",sendType=" + this.sendType + ",comboSeq=" + this.comboSeq + ",comboOver=" + this.comboOver + ",allComboCnt=" + this.allComboCnt + ",materialId=" + this.materialId + ",effectLevel=" + this.effectLevel + ",giftPrice=" + this.giftPrice + ",}";
}
public GProGiftInfo(int i2, int i3, String str, int i4, int i5, long j2, boolean z, int i6, int i7, int i8, long j3) {
this.serialVersionUID = 1L;
this.giftName = "";
this.giftType = i2;
this.giftId = i3;
this.giftName = str;
this.giftNum = i4;
this.sendType = i5;
this.comboSeq = j2;
this.comboOver = z;
this.allComboCnt = i6;
this.materialId = i7;
this.effectLevel = i8;
this.giftPrice = j3;
}
}
| 2,219 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
FileAssistantModel.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/FileAssistantModel.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class FileAssistantModel {
int chatType;
long expTime;
String fileName;
ArrayList<SearchHitInfo> fileNameHits;
String filePath;
long fileSize;
FileAssistantStatus fileStatus;
long fileTime;
String id;
boolean isSend;
long msgId;
String peerUid;
FileAssistantSession session;
FileAssistantSource source;
String thumbPath;
public FileAssistantModel() {
this.id = "";
this.fileName = "";
this.fileNameHits = new ArrayList<>();
this.fileStatus = FileAssistantStatus.values()[0];
this.source = FileAssistantSource.values()[0];
this.session = new FileAssistantSession();
this.thumbPath = "";
this.filePath = "";
this.peerUid = "";
}
public int getChatType() {
return this.chatType;
}
public long getExpTime() {
return this.expTime;
}
public String getFileName() {
return this.fileName;
}
public ArrayList<SearchHitInfo> getFileNameHits() {
return this.fileNameHits;
}
public String getFilePath() {
return this.filePath;
}
public long getFileSize() {
return this.fileSize;
}
public FileAssistantStatus getFileStatus() {
return this.fileStatus;
}
public long getFileTime() {
return this.fileTime;
}
public String getId() {
return this.id;
}
public boolean getIsSend() {
return this.isSend;
}
public long getMsgId() {
return this.msgId;
}
public String getPeerUid() {
return this.peerUid;
}
public FileAssistantSession getSession() {
return this.session;
}
public FileAssistantSource getSource() {
return this.source;
}
public String getThumbPath() {
return this.thumbPath;
}
public String toString() {
return "FileAssistantModel{id=" + this.id + ",fileName=" + this.fileName + ",fileNameHits=" + this.fileNameHits + ",fileStatus=" + this.fileStatus + ",fileSize=" + this.fileSize + ",isSend=" + this.isSend + ",source=" + this.source + ",fileTime=" + this.fileTime + ",expTime=" + this.expTime + ",session=" + this.session + ",thumbPath=" + this.thumbPath + ",filePath=" + this.filePath + ",msgId=" + this.msgId + ",chatType=" + this.chatType + ",peerUid=" + this.peerUid + ",}";
}
public FileAssistantModel(String str, String str2, ArrayList<SearchHitInfo> arrayList, FileAssistantStatus fileAssistantStatus, long j2, boolean z, FileAssistantSource fileAssistantSource, long j3, long j4, FileAssistantSession fileAssistantSession, String str3, String str4, long j5, int i2, String str5) {
this.id = "";
this.fileName = "";
this.fileNameHits = new ArrayList<>();
this.fileStatus = FileAssistantStatus.values()[0];
this.source = FileAssistantSource.values()[0];
this.session = new FileAssistantSession();
this.thumbPath = "";
this.filePath = "";
this.peerUid = "";
this.id = str;
this.fileName = str2;
this.fileNameHits = arrayList;
this.fileStatus = fileAssistantStatus;
this.fileSize = j2;
this.isSend = z;
this.source = fileAssistantSource;
this.fileTime = j3;
this.expTime = j4;
this.session = fileAssistantSession;
this.thumbPath = str3;
this.filePath = str4;
this.msgId = j5;
this.chatType = i2;
this.peerUid = str5;
}
}
| 3,679 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGuildReqInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGuildReqInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProGuildReqInfo {
long channelChangeSeq;
long guildChangeSeq;
long guildId;
public GProGuildReqInfo() {
}
public long getChannelChangeSeq() {
return this.channelChangeSeq;
}
public long getGuildChangeSeq() {
return this.guildChangeSeq;
}
public long getGuildId() {
return this.guildId;
}
public String toString() {
return "GProGuildReqInfo{guildId=" + this.guildId + ",guildChangeSeq=" + this.guildChangeSeq + ",channelChangeSeq=" + this.channelChangeSeq + ",}";
}
public GProGuildReqInfo(long j2, long j3, long j4) {
this.guildId = j2;
this.guildChangeSeq = j3;
this.channelChangeSeq = j4;
}
}
| 819 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGuildStateReqInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGuildStateReqInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProGuildStateReqInfo {
ArrayList<Long> channelIdList;
long guildId;
long stateSeq;
public GProGuildStateReqInfo() {
this.channelIdList = new ArrayList<>();
}
public ArrayList<Long> getChannelIdList() {
return this.channelIdList;
}
public long getGuildId() {
return this.guildId;
}
public long getStateSeq() {
return this.stateSeq;
}
public String toString() {
return "GProGuildStateReqInfo{guildId=" + this.guildId + ",channelIdList=" + this.channelIdList + ",stateSeq=" + this.stateSeq + ",}";
}
public GProGuildStateReqInfo(long j2, ArrayList<Long> arrayList, long j3) {
this.channelIdList = new ArrayList<>();
this.guildId = j2;
this.channelIdList = arrayList;
this.stateSeq = j3;
}
}
| 957 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGetPrefetchRecommendGuildsRsp.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGetPrefetchRecommendGuildsRsp.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProGetPrefetchRecommendGuildsRsp implements Serializable {
GProPrefetchRecommendBubbleInfo bubbleInfo;
ArrayList<GProPrefetchRecommendGuildInfo> guildInfos;
GProPrefetchRecommendRedDotInfo redDotInfo;
long serialVersionUID;
public GProGetPrefetchRecommendGuildsRsp() {
this.serialVersionUID = 1L;
this.guildInfos = new ArrayList<>();
this.redDotInfo = new GProPrefetchRecommendRedDotInfo();
this.bubbleInfo = new GProPrefetchRecommendBubbleInfo();
}
public GProPrefetchRecommendBubbleInfo getBubbleInfo() {
return this.bubbleInfo;
}
public ArrayList<GProPrefetchRecommendGuildInfo> getGuildInfos() {
return this.guildInfos;
}
public GProPrefetchRecommendRedDotInfo getRedDotInfo() {
return this.redDotInfo;
}
public String toString() {
return "GProGetPrefetchRecommendGuildsRsp{guildInfos=" + this.guildInfos + ",redDotInfo=" + this.redDotInfo + ",bubbleInfo=" + this.bubbleInfo + ",}";
}
public GProGetPrefetchRecommendGuildsRsp(ArrayList<GProPrefetchRecommendGuildInfo> arrayList, GProPrefetchRecommendRedDotInfo gProPrefetchRecommendRedDotInfo, GProPrefetchRecommendBubbleInfo gProPrefetchRecommendBubbleInfo) {
this.serialVersionUID = 1L;
this.guildInfos = new ArrayList<>();
this.redDotInfo = new GProPrefetchRecommendRedDotInfo();
this.bubbleInfo = new GProPrefetchRecommendBubbleInfo();
this.guildInfos = arrayList;
this.redDotInfo = gProPrefetchRecommendRedDotInfo;
this.bubbleInfo = gProPrefetchRecommendBubbleInfo;
}
}
| 1,779 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProNavigationInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProNavigationInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProNavigationInfo implements Serializable {
String bubbleDesc;
String iconUrl;
String jumpUrl;
int jumpUrlType;
long serialVersionUID;
boolean showBubble;
String title;
public GProNavigationInfo() {
this.serialVersionUID = 1L;
this.iconUrl = "";
this.title = "";
this.jumpUrl = "";
this.bubbleDesc = "";
}
public String getBubbleDesc() {
return this.bubbleDesc;
}
public String getIconUrl() {
return this.iconUrl;
}
public String getJumpUrl() {
return this.jumpUrl;
}
public int getJumpUrlType() {
return this.jumpUrlType;
}
public boolean getShowBubble() {
return this.showBubble;
}
public String getTitle() {
return this.title;
}
public String toString() {
return "GProNavigationInfo{iconUrl=" + this.iconUrl + ",title=" + this.title + ",jumpUrl=" + this.jumpUrl + ",jumpUrlType=" + this.jumpUrlType + ",showBubble=" + this.showBubble + ",bubbleDesc=" + this.bubbleDesc + ",}";
}
public GProNavigationInfo(String str, String str2, String str3, int i2, boolean z, String str4) {
this.serialVersionUID = 1L;
this.iconUrl = "";
this.title = "";
this.jumpUrl = "";
this.bubbleDesc = "";
this.iconUrl = str;
this.title = str2;
this.jumpUrl = str3;
this.jumpUrlType = i2;
this.showBubble = z;
this.bubbleDesc = str4;
}
}
| 1,642 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRecallReqItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRecallReqItem.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProRecallReqItem {
String channelId;
int directMsgFlag;
ArrayList<Long> msgIds;
public GProRecallReqItem() {
this.channelId = "";
this.msgIds = new ArrayList<>();
}
public String getChannelId() {
return this.channelId;
}
public int getDirectMsgFlag() {
return this.directMsgFlag;
}
public ArrayList<Long> getMsgIds() {
return this.msgIds;
}
public String toString() {
return "GProRecallReqItem{channelId=" + this.channelId + ",msgIds=" + this.msgIds + ",directMsgFlag=" + this.directMsgFlag + ",}";
}
public GProRecallReqItem(String str, ArrayList<Long> arrayList, int i2) {
this.channelId = "";
this.msgIds = new ArrayList<>();
this.channelId = str;
this.msgIds = arrayList;
this.directMsgFlag = i2;
}
}
| 990 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProUserGiftInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProUserGiftInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes22.dex */
public final class GProUserGiftInfo implements Serializable {
long giftPrice;
String giftTipsMsg;
long serialVersionUID;
String showGiftPrice;
public GProUserGiftInfo() {
this.serialVersionUID = 1L;
this.showGiftPrice = "";
this.giftTipsMsg = "";
}
public long getGiftPrice() {
return this.giftPrice;
}
public String getGiftTipsMsg() {
return this.giftTipsMsg;
}
public String getShowGiftPrice() {
return this.showGiftPrice;
}
public String toString() {
return "GProUserGiftInfo{giftPrice=" + this.giftPrice + ",showGiftPrice=" + this.showGiftPrice + ",giftTipsMsg=" + this.giftTipsMsg + ",}";
}
public GProUserGiftInfo(long j2, String str, String str2) {
this.serialVersionUID = 1L;
this.showGiftPrice = "";
this.giftTipsMsg = "";
this.giftPrice = j2;
this.showGiftPrice = str;
this.giftTipsMsg = str2;
}
}
| 1,095 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProVoiceSmobaGameDissmissRoomReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProVoiceSmobaGameDissmissRoomReq.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProVoiceSmobaGameDissmissRoomReq {
long channelId;
long guildId;
long roomId;
int source;
public GProVoiceSmobaGameDissmissRoomReq() {
}
public long getChannelId() {
return this.channelId;
}
public long getGuildId() {
return this.guildId;
}
public long getRoomId() {
return this.roomId;
}
public int getSource() {
return this.source;
}
public String toString() {
return "GProVoiceSmobaGameDissmissRoomReq{roomId=" + this.roomId + ",guildId=" + this.guildId + ",channelId=" + this.channelId + ",source=" + this.source + ",}";
}
public GProVoiceSmobaGameDissmissRoomReq(long j2, long j3, long j4, int i2) {
this.roomId = j2;
this.guildId = j3;
this.channelId = j4;
this.source = i2;
}
}
| 938 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProIdentity.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProIdentity.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProIdentity implements Serializable {
int identityType;
byte[] plateData;
long serialVersionUID;
int type;
String value;
public GProIdentity() {
this.serialVersionUID = 1L;
this.value = "";
this.plateData = new byte[0];
}
public int getIdentityType() {
return this.identityType;
}
public byte[] getPlateData() {
return this.plateData;
}
public int getType() {
return this.type;
}
public String getValue() {
return this.value;
}
public String toString() {
return "GProIdentity{type=" + this.type + ",value=" + this.value + ",identityType=" + this.identityType + ",plateData=" + this.plateData + ",}";
}
public GProIdentity(int i2, String str, int i3, byte[] bArr) {
this.serialVersionUID = 1L;
this.value = "";
this.plateData = new byte[0];
this.type = i2;
this.value = str;
this.identityType = i3;
this.plateData = bArr;
}
}
| 1,160 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProQRCodeShareInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProQRCodeShareInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProQRCodeShareInfo implements Serializable {
String OnlineMembersCount;
long avTime;
String channelCopyWriter;
String feedLabel;
long feedNum;
long gameNum;
String guildLabel;
long liveNum;
String membersCount;
long serialVersionUID;
String streamLabel;
String teamLabel;
String voiceLabel;
public GProQRCodeShareInfo() {
this.serialVersionUID = 1L;
this.OnlineMembersCount = "";
this.membersCount = "";
this.guildLabel = "";
this.channelCopyWriter = "";
this.feedLabel = "";
this.streamLabel = "";
this.voiceLabel = "";
this.teamLabel = "";
}
public long getAvTime() {
return this.avTime;
}
public String getChannelCopyWriter() {
return this.channelCopyWriter;
}
public String getFeedLabel() {
return this.feedLabel;
}
public long getFeedNum() {
return this.feedNum;
}
public long getGameNum() {
return this.gameNum;
}
public String getGuildLabel() {
return this.guildLabel;
}
public long getLiveNum() {
return this.liveNum;
}
public String getMembersCount() {
return this.membersCount;
}
public String getOnlineMembersCount() {
return this.OnlineMembersCount;
}
public String getStreamLabel() {
return this.streamLabel;
}
public String getTeamLabel() {
return this.teamLabel;
}
public String getVoiceLabel() {
return this.voiceLabel;
}
public String toString() {
return "GProQRCodeShareInfo{OnlineMembersCount=" + this.OnlineMembersCount + ",membersCount=" + this.membersCount + ",feedNum=" + this.feedNum + ",gameNum=" + this.gameNum + ",liveNum=" + this.liveNum + ",avTime=" + this.avTime + ",guildLabel=" + this.guildLabel + ",channelCopyWriter=" + this.channelCopyWriter + ",feedLabel=" + this.feedLabel + ",streamLabel=" + this.streamLabel + ",voiceLabel=" + this.voiceLabel + ",teamLabel=" + this.teamLabel + ",}";
}
public GProQRCodeShareInfo(String str, String str2, long j2, long j3, long j4, long j5, String str3, String str4, String str5, String str6, String str7, String str8) {
this.serialVersionUID = 1L;
this.OnlineMembersCount = "";
this.membersCount = "";
this.guildLabel = "";
this.channelCopyWriter = "";
this.feedLabel = "";
this.streamLabel = "";
this.voiceLabel = "";
this.teamLabel = "";
this.OnlineMembersCount = str;
this.membersCount = str2;
this.feedNum = j2;
this.gameNum = j3;
this.liveNum = j4;
this.avTime = j5;
this.guildLabel = str3;
this.channelCopyWriter = str4;
this.feedLabel = str5;
this.streamLabel = str6;
this.voiceLabel = str7;
this.teamLabel = str8;
}
}
| 3,062 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProBottomTabSourceInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProBottomTabSourceInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProBottomTabSourceInfo {
String bid;
int bussiSource;
int sceneId;
public GProBottomTabSourceInfo() {
this.bid = "";
}
public String getBid() {
return this.bid;
}
public int getBussiSource() {
return this.bussiSource;
}
public int getSceneId() {
return this.sceneId;
}
public String toString() {
return "GProBottomTabSourceInfo{sceneId=" + this.sceneId + ",bid=" + this.bid + ",bussiSource=" + this.bussiSource + ",}";
}
public GProBottomTabSourceInfo(int i2, String str, int i3) {
this.bid = "";
this.sceneId = i2;
this.bid = str;
this.bussiSource = i3;
}
}
| 799 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProVoiceSmobaGameCaptainUserInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProVoiceSmobaGameCaptainUserInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProVoiceSmobaGameCaptainUserInfo implements Serializable {
String avatarMeta;
String nickName;
long serialVersionUID;
public GProVoiceSmobaGameCaptainUserInfo() {
this.serialVersionUID = 1L;
this.avatarMeta = "";
this.nickName = "";
}
public String getAvatarMeta() {
return this.avatarMeta;
}
public String getNickName() {
return this.nickName;
}
public String toString() {
return "GProVoiceSmobaGameCaptainUserInfo{avatarMeta=" + this.avatarMeta + ",nickName=" + this.nickName + ",}";
}
public GProVoiceSmobaGameCaptainUserInfo(String str, String str2) {
this.serialVersionUID = 1L;
this.avatarMeta = "";
this.nickName = "";
this.avatarMeta = str;
this.nickName = str2;
}
}
| 952 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
TofuContent.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/TofuContent.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes.dex */
public final class TofuContent {
String color;
String title;
public TofuContent() {
}
public String getColor() {
return this.color;
}
public String getTitle() {
return this.title;
}
public String toString() {
return "TofuContent{title=" + this.title + ",color=" + this.color + ",}";
}
public TofuContent(String str, String str2) {
this.title = str;
this.color = str2;
}
}
| 569 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
IKernelRichMediaService.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IKernelRichMediaService.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
public interface IKernelRichMediaService {
void batchGetGroupFileCount(ArrayList<Long> arrayList, IBatchGroupFileCountCallback iBatchGroupFileCountCallback);
void cancelSearcheGroupFile(int i2, int i3, String str);
void cancelTransferTask(Contact contact, ArrayList<Long> arrayList, ArrayList<Integer> arrayList2, IOperateTransferInfoCallback iOperateTransferInfoCallback);
void deleteGroupFile(long j2, String str, int i2, IDeleteGroupFileCallback iDeleteGroupFileCallback);
void deleteTransferInfo(Contact contact, ArrayList<Long> arrayList, IOperateTransferInfoCallback iOperateTransferInfoCallback);
void downloadFile(CommonFileInfo commonFileInfo, int i2, int i3, String str);
void downloadFileForFileInfo(ArrayList<CommonFileInfo> arrayList, String str);
void downloadFileForFileUuid(Contact contact, String str, ArrayList<DownloadGroupFileParams> arrayList);
void downloadFileForModelId(Contact contact, ArrayList<Long> arrayList, String str);
void downloadRichMediaInVisit(RichDownLoadReq richDownLoadReq);
void getGroupFileInfo(long j2, String str, IGroupFileInfoCallback iGroupFileInfoCallback);
int getGroupFileList(long j2, GroupFileListForm groupFileListForm);
void getGroupSpace(long j2, IGroupSpaceCallback iGroupSpaceCallback);
int getGroupTransferList(long j2, GroupFileListForm groupFileListForm);
String getRichMediaFileDir(int i2, int i3, boolean z);
void getScreenOCR(String str, IWindowsOcrCallback iWindowsOcrCallback);
void getVideoPlayUrl(Contact contact, long j2, long j3, VideoCodecFormatType videoCodecFormatType, VideoRequestWay videoRequestWay, IVideoPlayUrlCallback iVideoPlayUrlCallback);
void getVideoPlayUrlInVisit(RichDownLoadReq richDownLoadReq, IVideoPlayUrlCallback iVideoPlayUrlCallback);
void moveGroupFile(long j2, int i2, String str, String str2, String str3, IMoveGroupFileCallback iMoveGroupFileCallback);
void onlyDownloadFile(Contact contact, String str, ArrayList<DownloadGroupFileParams> arrayList);
void onlyUploadFile(Contact contact, ArrayList<UploadGroupFileParams> fileParams);
PicDownParams queryPicDownloadSize(PicReqParams picReqParams);
void renameGroupFile(long j2, int i2, String str, String str2, String str3, IRenameGroupFileCallback iRenameGroupFileCallback);
int searchGroupFile(ArrayList<String> arrayList, SearchGroupFileParams searchGroupFileParams, IOperateCallback iOperateCallback);
void searchGroupFileByWord(ArrayList<Long> arrayList, ArrayList<Long> arrayList2, String str, String str2, int i2, ISearchGroupFileCallback iSearchGroupFileCallback);
void searchMoreGroupFile(int i2);
void transGroupFile(long j2, String str, ITransGroupFileCallback iTransGroupFileCallback);
void translateEnWordToZn(ArrayList<String> arrayList, ITranslateWordsCallback iTranslateWordsCallback);
void updateOnlineVideoElemStatus(UploadStatusParams uploadStatusParams);
}
| 3,046 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
VASPersonalElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/VASPersonalElement.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes.dex */
public final class VASPersonalElement {
Integer colorNickId;
Integer fontId;
Integer loveChatId;
Long loverUin;
VASPersonalNamePlate personalNamePlateInfo;
Integer vaDataChangeRand;
Integer vipPendantId;
public VASPersonalElement() {
this.personalNamePlateInfo = new VASPersonalNamePlate();
}
public Integer getColorNickId() {
return this.colorNickId;
}
public Integer getFontId() {
return this.fontId;
}
public Integer getLoveChatId() {
return this.loveChatId;
}
public Long getLoverUin() {
return this.loverUin;
}
public VASPersonalNamePlate getPersonalNamePlateInfo() {
return this.personalNamePlateInfo;
}
public Integer getVaDataChangeRand() {
return this.vaDataChangeRand;
}
public Integer getVipPendantId() {
return this.vipPendantId;
}
public String toString() {
return "VASPersonalElement{personalNamePlateInfo=" + this.personalNamePlateInfo + ",colorNickId=" + this.colorNickId + ",loveChatId=" + this.loveChatId + ",loverUin=" + this.loverUin + ",vipPendantId=" + this.vipPendantId + ",fontId=" + this.fontId + ",vaDataChangeRand=" + this.vaDataChangeRand + ",}";
}
public VASPersonalElement(VASPersonalNamePlate vASPersonalNamePlate, Integer num, Integer num2, Long l2, Integer num3, Integer num4, Integer num5) {
this.personalNamePlateInfo = new VASPersonalNamePlate();
this.personalNamePlateInfo = vASPersonalNamePlate;
this.colorNickId = num;
this.loveChatId = num2;
this.loverUin = l2;
this.vipPendantId = num3;
this.fontId = num4;
this.vaDataChangeRand = num5;
}
}
| 1,817 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProStickyFeedChannel.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProStickyFeedChannel.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProStickyFeedChannel implements Serializable {
String activeMemberCount;
ArrayList<GProUser> activeMemberList;
String feedCount;
ArrayList<GProFeedSummary> feedSummaryList;
long serialVersionUID;
public GProStickyFeedChannel() {
this.serialVersionUID = 1L;
this.feedCount = "";
this.feedSummaryList = new ArrayList<>();
this.activeMemberCount = "";
this.activeMemberList = new ArrayList<>();
}
public String getActiveMemberCount() {
return this.activeMemberCount;
}
public ArrayList<GProUser> getActiveMemberList() {
return this.activeMemberList;
}
public String getFeedCount() {
return this.feedCount;
}
public ArrayList<GProFeedSummary> getFeedSummaryList() {
return this.feedSummaryList;
}
public String toString() {
return "GProStickyFeedChannel{feedCount=" + this.feedCount + ",feedSummaryList=" + this.feedSummaryList + ",activeMemberCount=" + this.activeMemberCount + ",activeMemberList=" + this.activeMemberList + ",}";
}
public GProStickyFeedChannel(String str, ArrayList<GProFeedSummary> arrayList, String str2, ArrayList<GProUser> arrayList2) {
this.serialVersionUID = 1L;
this.feedCount = "";
this.feedSummaryList = new ArrayList<>();
this.activeMemberCount = "";
this.activeMemberList = new ArrayList<>();
this.feedCount = str;
this.feedSummaryList = arrayList;
this.activeMemberCount = str2;
this.activeMemberList = arrayList2;
}
}
| 1,741 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupAnonymousInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupAnonymousInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class GroupAnonymousInfo {
byte[] anonyId;
String anonyNick;
AnonyStatus anonyStatus;
int bubbleId;
int expiredTime;
int headPicIndex;
boolean isAnonymousChat;
String rankColor;
public GroupAnonymousInfo() {
this.anonyId = new byte[0];
this.anonyNick = "";
this.anonyStatus = new AnonyStatus();
this.rankColor = "";
}
public byte[] getAnonyId() {
return this.anonyId;
}
public String getAnonyNick() {
return this.anonyNick;
}
public AnonyStatus getAnonyStatus() {
return this.anonyStatus;
}
public int getBubbleId() {
return this.bubbleId;
}
public int getExpiredTime() {
return this.expiredTime;
}
public int getHeadPicIndex() {
return this.headPicIndex;
}
public boolean getIsAnonymousChat() {
return this.isAnonymousChat;
}
public String getRankColor() {
return this.rankColor;
}
public String toString() {
return "GroupAnonymousInfo{isAnonymousChat=" + this.isAnonymousChat + ",anonyId=" + this.anonyId + ",anonyNick=" + this.anonyNick + ",headPicIndex=" + this.headPicIndex + ",bubbleId=" + this.bubbleId + ",expiredTime=" + this.expiredTime + ",anonyStatus=" + this.anonyStatus + ",rankColor=" + this.rankColor + ",}";
}
public GroupAnonymousInfo(boolean z, byte[] bArr, String str, int i2, int i3, int i4, AnonyStatus anonyStatus, String str2) {
this.anonyId = new byte[0];
this.anonyNick = "";
this.anonyStatus = new AnonyStatus();
this.rankColor = "";
this.isAnonymousChat = z;
this.anonyId = bArr;
this.anonyNick = str;
this.headPicIndex = i2;
this.bubbleId = i3;
this.expiredTime = i4;
this.anonyStatus = anonyStatus;
this.rankColor = str2;
}
}
| 1,950 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
MultiMsgInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/MultiMsgInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class MultiMsgInfo {
long msgId;
String senderShowName;
public MultiMsgInfo() {
}
public long getMsgId() {
return this.msgId;
}
public String getSenderShowName() {
return this.senderShowName;
}
public String toString() {
return "MultiMsgInfo{msgId=" + this.msgId + ",senderShowName=" + this.senderShowName + ",}";
}
public MultiMsgInfo(long j2, String str) {
this.msgId = j2;
this.senderShowName = str;
}
}
| 618 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProDoLikeForFeedReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProDoLikeForFeedReq.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes4.dex */
public final class GProDoLikeForFeedReq {
GProFDLStComment comment;
GProFDLStCommonExt extInfo;
GProFDLStFeed feed;
GProFDLStLike like;
int likeType;
public GProDoLikeForFeedReq() {
this.extInfo = new GProFDLStCommonExt();
this.like = new GProFDLStLike();
this.feed = new GProFDLStFeed();
this.comment = new GProFDLStComment();
}
public GProFDLStComment getComment() {
return this.comment;
}
public GProFDLStCommonExt getExtInfo() {
return this.extInfo;
}
public GProFDLStFeed getFeed() {
return this.feed;
}
public GProFDLStLike getLike() {
return this.like;
}
public int getLikeType() {
return this.likeType;
}
public String toString() {
return "GProDoLikeForFeedReq{extInfo=" + this.extInfo + ",likeType=" + this.likeType + ",like=" + this.like + ",feed=" + this.feed + ",comment=" + this.comment + ",}";
}
public GProDoLikeForFeedReq(GProFDLStCommonExt gProFDLStCommonExt, int i2, GProFDLStLike gProFDLStLike, GProFDLStFeed gProFDLStFeed, GProFDLStComment gProFDLStComment) {
this.extInfo = new GProFDLStCommonExt();
this.like = new GProFDLStLike();
this.feed = new GProFDLStFeed();
this.comment = new GProFDLStComment();
this.extInfo = gProFDLStCommonExt;
this.likeType = i2;
this.like = gProFDLStLike;
this.feed = gProFDLStFeed;
this.comment = gProFDLStComment;
}
}
| 1,598 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
RobotMsgExt.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/RobotMsgExt.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes22.dex */
public final class RobotMsgExt {
boolean robotMsgFlag;
public RobotMsgExt() {
}
public boolean getRobotMsgFlag() {
return this.robotMsgFlag;
}
public String toString() {
return "RobotMsgExt{robotMsgFlag=" + this.robotMsgFlag + ",}";
}
public RobotMsgExt(boolean z) {
this.robotMsgFlag = z;
}
}
| 464 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProEnterAudioLiveChannelReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProEnterAudioLiveChannelReq.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProEnterAudioLiveChannelReq {
long channelId;
int channelType;
boolean forceTRTCSign;
long guildId;
String joinSourceType;
int sourceType;
public GProEnterAudioLiveChannelReq() {
this.joinSourceType = "";
}
public long getChannelId() {
return this.channelId;
}
public int getChannelType() {
return this.channelType;
}
public boolean getForceTRTCSign() {
return this.forceTRTCSign;
}
public long getGuildId() {
return this.guildId;
}
public String getJoinSourceType() {
return this.joinSourceType;
}
public int getSourceType() {
return this.sourceType;
}
public String toString() {
return "GProEnterAudioLiveChannelReq{guildId=" + this.guildId + ",channelId=" + this.channelId + ",sourceType=" + this.sourceType + ",forceTRTCSign=" + this.forceTRTCSign + ",joinSourceType=" + this.joinSourceType + ",channelType=" + this.channelType + ",}";
}
public GProEnterAudioLiveChannelReq(long j2, long j3, int i2, boolean z, String str, int i3) {
this.joinSourceType = "";
this.guildId = j2;
this.channelId = j3;
this.sourceType = i2;
this.forceTRTCSign = z;
this.joinSourceType = str;
this.channelType = i3;
}
}
| 1,430 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
LocalAVRecordElementType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/LocalAVRecordElementType.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public enum LocalAVRecordElementType {
KUNKNOWN,
KGROUPAUDIO,
KNOTICECLOSEVIDEO,
KNOTICEMISSVIDEO,
KNOTICEOTHERNOTACCEPTVIDEO,
KNOTICECANCELVIDEO,
KNOTICEREJECTVIDEO,
KNOTICECLOSEAUDIO,
KNOTICEMISSAUDIO,
KNOTICEOTHERNOTACCEPTAUDIO,
KNOTICECANCELAUDIO,
KNOTICEREJECTAUDIO,
KNOTICESWITCHTOOTHERTERMVIDEO,
KNOTICESWITCHTOOTHERTERMAUDIO,
KNOTICEGROUPCREATEFAIL,
KNOTICETOOMANYSVRMEMBER,
KNOTICEGROUPGRAYTIP,
KNOTICECANCELSCREENSHARE,
KNOTICEMISSSCREENSHARE,
KNOTICECLOSESCREENSHARE,
KNOTICEREJECTSCREENSHARE,
KGROUPSCREENSHARE,
KNOTICEOTHERNOTACCEPTSCREENSHARE,
KNOTICESWITCHTOOTHERTERMSCREENSHARE,
KNOTICEGROUPGRAYTIPSCREENSHARE,
KNOTICEGROUPGRAYTIPVIDEO,
KGROUPVIDEO,
KNOTICEGROUPCLASS,
KNOTICEVIDEOCHAT,
KNOTICEGROUPGRAYTIPCLASSOVER,
KNOTICEGROUPGRAYTIPVIDEOCHATOVER,
KNOTICEGROUPLIVE,
KNOTICEGROUPGRAYTIPLIVEOVER,
KREMOTECONTROLFINISH,
KREMOTECONTROLCANCELED,
KREMOTECONTROLPEERTIMEOUT,
KREMOTECONTROLPEERREJECT,
KREMOTECONTROLMISSED,
KREMOTECONTROLPEERCANCEL,
KREMOTECONTROLGRAPTIPPEERLOWVERSION
}
| 1,264 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProUserFreeGiftReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProUserFreeGiftReq.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes22.dex */
public final class GProUserFreeGiftReq implements Serializable {
long channelId;
String checkContext;
long guildId;
long serialVersionUID;
ArrayList<Integer> themeTypes;
public GProUserFreeGiftReq() {
this.serialVersionUID = 1L;
this.checkContext = "";
this.themeTypes = new ArrayList<>();
}
public long getChannelId() {
return this.channelId;
}
public String getCheckContext() {
return this.checkContext;
}
public long getGuildId() {
return this.guildId;
}
public ArrayList<Integer> getThemeTypes() {
return this.themeTypes;
}
public String toString() {
return "GProUserFreeGiftReq{guildId=" + this.guildId + ",channelId=" + this.channelId + ",checkContext=" + this.checkContext + ",themeTypes=" + this.themeTypes + ",}";
}
public GProUserFreeGiftReq(long j2, long j3, String str, ArrayList<Integer> arrayList) {
this.serialVersionUID = 1L;
this.checkContext = "";
this.themeTypes = new ArrayList<>();
this.guildId = j2;
this.channelId = j3;
this.checkContext = str;
this.themeTypes = arrayList;
}
}
| 1,345 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProNotice.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProNotice.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProNotice {
ArrayList<GProNoticeAction> actionList;
ArrayList<GProNoticeText> comment;
GProNoticeCover cover;
int createTs;
int expireTs;
long guildId;
String handleResult;
int handleTs;
String handlerNickName;
long handlerTinyId;
long handlerUin;
String joinSign;
ArrayList<GProNoticeJump> jumpLink;
int msgType;
String noticeId;
int noticeType;
ArrayList<GProNoticeText> subTitle;
int templateId;
ArrayList<GProNoticeText> title;
public GProNotice() {
this.noticeId = "";
this.title = new ArrayList<>();
this.subTitle = new ArrayList<>();
this.comment = new ArrayList<>();
this.cover = new GProNoticeCover();
this.actionList = new ArrayList<>();
this.joinSign = "";
this.jumpLink = new ArrayList<>();
this.handleResult = "";
this.handlerNickName = "";
}
public ArrayList<GProNoticeAction> getActionList() {
return this.actionList;
}
public ArrayList<GProNoticeText> getComment() {
return this.comment;
}
public GProNoticeCover getCover() {
return this.cover;
}
public int getCreateTs() {
return this.createTs;
}
public int getExpireTs() {
return this.expireTs;
}
public long getGuildId() {
return this.guildId;
}
public String getHandleResult() {
return this.handleResult;
}
public int getHandleTs() {
return this.handleTs;
}
public String getHandlerNickName() {
return this.handlerNickName;
}
public long getHandlerTinyId() {
return this.handlerTinyId;
}
public long getHandlerUin() {
return this.handlerUin;
}
public String getJoinSign() {
return this.joinSign;
}
public ArrayList<GProNoticeJump> getJumpLink() {
return this.jumpLink;
}
public int getMsgType() {
return this.msgType;
}
public String getNoticeId() {
return this.noticeId;
}
public int getNoticeType() {
return this.noticeType;
}
public ArrayList<GProNoticeText> getSubTitle() {
return this.subTitle;
}
public int getTemplateId() {
return this.templateId;
}
public ArrayList<GProNoticeText> getTitle() {
return this.title;
}
public String toString() {
return "GProNotice{noticeId=" + this.noticeId + ",templateId=" + this.templateId + ",createTs=" + this.createTs + ",expireTs=" + this.expireTs + ",handleTs=" + this.handleTs + ",guildId=" + this.guildId + ",title=" + this.title + ",subTitle=" + this.subTitle + ",comment=" + this.comment + ",cover=" + this.cover + ",actionList=" + this.actionList + ",joinSign=" + this.joinSign + ",msgType=" + this.msgType + ",jumpLink=" + this.jumpLink + ",noticeType=" + this.noticeType + ",handlerUin=" + this.handlerUin + ",handleResult=" + this.handleResult + ",handlerTinyId=" + this.handlerTinyId + ",handlerNickName=" + this.handlerNickName + ",}";
}
public GProNotice(String str, int i2, int i3, int i4, int i5, long j2, ArrayList<GProNoticeText> arrayList, ArrayList<GProNoticeText> arrayList2, ArrayList<GProNoticeText> arrayList3, GProNoticeCover gProNoticeCover, ArrayList<GProNoticeAction> arrayList4, String str2, int i6, ArrayList<GProNoticeJump> arrayList5, int i7, long j3, String str3, long j4, String str4) {
this.noticeId = "";
this.title = new ArrayList<>();
this.subTitle = new ArrayList<>();
this.comment = new ArrayList<>();
this.cover = new GProNoticeCover();
this.actionList = new ArrayList<>();
this.joinSign = "";
this.jumpLink = new ArrayList<>();
this.handleResult = "";
this.handlerNickName = "";
this.noticeId = str;
this.templateId = i2;
this.createTs = i3;
this.expireTs = i4;
this.handleTs = i5;
this.guildId = j2;
this.title = arrayList;
this.subTitle = arrayList2;
this.comment = arrayList3;
this.cover = gProNoticeCover;
this.actionList = arrayList4;
this.joinSign = str2;
this.msgType = i6;
this.jumpLink = arrayList5;
this.noticeType = i7;
this.handlerUin = j3;
this.handleResult = str3;
this.handlerTinyId = j4;
this.handlerNickName = str4;
}
}
| 4,570 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupGrayElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupGrayElement.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
public final class GroupGrayElement implements Serializable {
String adminNick;
String adminRemark;
String adminUid;
CreateGroupGrayElement createGroup;
String groupName;
MemberAddGrayElement memberAdd;
String memberNick;
String memberRemark;
String memberUid;
GroupGrayElementRole role;
long serialVersionUID;
GroupShutUpGrayElement shutUp;
GroupGrayElementType type;
public GroupGrayElement() {
this.serialVersionUID = 1L;
this.type = GroupGrayElementType.values()[0];
this.role = GroupGrayElementRole.values()[0];
this.groupName = "";
this.memberUid = "";
this.memberNick = "";
this.memberRemark = "";
this.adminUid = "";
this.adminNick = "";
this.adminRemark = "";
}
public String getAdminNick() {
return this.adminNick;
}
public String getAdminRemark() {
return this.adminRemark;
}
public String getAdminUid() {
return this.adminUid;
}
public CreateGroupGrayElement getCreateGroup() {
return this.createGroup;
}
public String getGroupName() {
return this.groupName;
}
public MemberAddGrayElement getMemberAdd() {
return this.memberAdd;
}
public String getMemberNick() {
return this.memberNick;
}
public String getMemberRemark() {
return this.memberRemark;
}
public String getMemberUid() {
return this.memberUid;
}
public GroupGrayElementRole getRole() {
return this.role;
}
public GroupShutUpGrayElement getShutUp() {
return this.shutUp;
}
public GroupGrayElementType getType() {
return this.type;
}
public String toString() {
return "GroupGrayElement{type=" + this.type + ",role=" + this.role + ",groupName=" + this.groupName + ",memberUid=" + this.memberUid + ",memberNick=" + this.memberNick + ",memberRemark=" + this.memberRemark + ",adminUid=" + this.adminUid + ",adminNick=" + this.adminNick + ",adminRemark=" + this.adminRemark + ",createGroup=" + this.createGroup + ",memberAdd=" + this.memberAdd + ",shutUp=" + this.shutUp + ",}";
}
public GroupGrayElement(GroupGrayElementType groupGrayElementType, GroupGrayElementRole groupGrayElementRole, String str, String str2, String str3, String str4, String str5, String str6, String str7, CreateGroupGrayElement createGroupGrayElement, MemberAddGrayElement memberAddGrayElement, GroupShutUpGrayElement groupShutUpGrayElement) {
this.serialVersionUID = 1L;
this.type = GroupGrayElementType.values()[0];
this.role = GroupGrayElementRole.values()[0];
this.groupName = "";
this.memberUid = "";
this.memberNick = "";
this.memberRemark = "";
this.adminUid = "";
this.adminNick = "";
this.adminRemark = "";
this.type = groupGrayElementType;
this.role = groupGrayElementRole;
this.groupName = str;
this.memberUid = str2;
this.memberNick = str3;
this.memberRemark = str4;
this.adminUid = str5;
this.adminNick = str6;
this.adminRemark = str7;
this.createGroup = createGroupGrayElement;
this.memberAdd = memberAddGrayElement;
this.shutUp = groupShutUpGrayElement;
}
}
| 3,442 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAudioBotStatusInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAudioBotStatusInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProAudioBotStatusInfo {
long botId;
long botTrtcId;
long botUin;
long channelId;
int detailType;
String detailUrl;
String statusText;
int statusType;
public GProAudioBotStatusInfo() {
this.statusText = "";
this.detailUrl = "";
}
public long getBotId() {
return this.botId;
}
public long getBotTrtcId() {
return this.botTrtcId;
}
public long getBotUin() {
return this.botUin;
}
public long getChannelId() {
return this.channelId;
}
public int getDetailType() {
return this.detailType;
}
public String getDetailUrl() {
return this.detailUrl;
}
public String getStatusText() {
return this.statusText;
}
public int getStatusType() {
return this.statusType;
}
public String toString() {
return "GProAudioBotStatusInfo{channelId=" + this.channelId + ",botId=" + this.botId + ",botUin=" + this.botUin + ",statusType=" + this.statusType + ",statusText=" + this.statusText + ",detailUrl=" + this.detailUrl + ",detailType=" + this.detailType + ",botTrtcId=" + this.botTrtcId + ",}";
}
public GProAudioBotStatusInfo(long j2, long j3, long j4, int i2, String str, String str2, int i3, long j5) {
this.statusText = "";
this.detailUrl = "";
this.channelId = j2;
this.botId = j3;
this.botUin = j4;
this.statusType = i2;
this.statusText = str;
this.detailUrl = str2;
this.detailType = i3;
this.botTrtcId = j5;
}
}
| 1,699 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProEnterAVChannelPermissionInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProEnterAVChannelPermissionInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProEnterAVChannelPermissionInfo implements Serializable {
int roleType;
long serialVersionUID = 1;
public GProEnterAVChannelPermissionInfo() {
}
public int getRoleType() {
return this.roleType;
}
public String toString() {
return "GProEnterAVChannelPermissionInfo{roleType=" + this.roleType + ",}";
}
public GProEnterAVChannelPermissionInfo(int i2) {
this.roleType = i2;
}
}
| 575 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProWorldSlowModeConfig.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProWorldSlowModeConfig.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProWorldSlowModeConfig implements Serializable {
long operatorTinyId;
long serialVersionUID = 1;
int slowModeKey;
public GProWorldSlowModeConfig() {
}
public long getOperatorTinyId() {
return this.operatorTinyId;
}
public int getSlowModeKey() {
return this.slowModeKey;
}
public String toString() {
return "GProWorldSlowModeConfig{slowModeKey=" + this.slowModeKey + ",operatorTinyId=" + this.operatorTinyId + ",}";
}
public GProWorldSlowModeConfig(int i2, long j2) {
this.slowModeKey = i2;
this.operatorTinyId = j2;
}
}
| 749 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProProgrammeInfoReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProProgrammeInfoReq.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProProgrammeInfoReq {
String programmeId;
int tabType;
public GProProgrammeInfoReq() {
this.programmeId = "";
}
public String getProgrammeId() {
return this.programmeId;
}
public int getTabType() {
return this.tabType;
}
public String toString() {
return "GProProgrammeInfoReq{programmeId=" + this.programmeId + ",tabType=" + this.tabType + ",}";
}
public GProProgrammeInfoReq(String str, int i2) {
this.programmeId = "";
this.programmeId = str;
this.tabType = i2;
}
}
| 680 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProMsgSummary.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProMsgSummary.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProMsgSummary implements Serializable {
String avatar;
long msgSeq;
byte[] richText;
long serialVersionUID;
long tinyId;
public GProMsgSummary() {
this.serialVersionUID = 1L;
this.avatar = "";
this.richText = new byte[0];
}
public String getAvatar() {
return this.avatar;
}
public long getMsgSeq() {
return this.msgSeq;
}
public byte[] getRichText() {
return this.richText;
}
public long getTinyId() {
return this.tinyId;
}
public String toString() {
return "GProMsgSummary{tinyId=" + this.tinyId + ",avatar=" + this.avatar + ",msgSeq=" + this.msgSeq + ",richText=" + this.richText + ",}";
}
public GProMsgSummary(long j2, String str, long j3, byte[] bArr) {
this.serialVersionUID = 1L;
this.avatar = "";
this.richText = new byte[0];
this.tinyId = j2;
this.avatar = str;
this.msgSeq = j3;
this.richText = bArr;
}
}
| 1,150 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
WalletElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/WalletElement.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class WalletElement {
String authkey;
String billNo;
int channelId;
int confType;
int envelopeId;
int grabState;
long grabbedAmount;
ArrayList<Long> grapUin;
int msgFrom;
int msgPriority;
int msgType;
String name;
byte[] pbReserve;
byte[] pcBody;
WalletAio receiver;
int redChannel;
int redType;
int resend;
long sendUin;
WalletAio sender;
int sessiontype;
byte[] stringIndex;
int templateId;
public WalletElement() {
this.sender = new WalletAio();
this.receiver = new WalletAio();
this.billNo = "";
this.authkey = "";
this.name = "";
this.pcBody = new byte[0];
this.stringIndex = new byte[0];
this.grapUin = new ArrayList<>();
this.pbReserve = new byte[0];
}
public String getAuthkey() {
return this.authkey;
}
public String getBillNo() {
return this.billNo;
}
public int getChannelId() {
return this.channelId;
}
public int getConfType() {
return this.confType;
}
public int getEnvelopeId() {
return this.envelopeId;
}
public int getGrabState() {
return this.grabState;
}
public long getGrabbedAmount() {
return this.grabbedAmount;
}
public ArrayList<Long> getGrapUin() {
return this.grapUin;
}
public int getMsgFrom() {
return this.msgFrom;
}
public int getMsgPriority() {
return this.msgPriority;
}
public int getMsgType() {
return this.msgType;
}
public String getName() {
return this.name;
}
public byte[] getPbReserve() {
return this.pbReserve;
}
public byte[] getPcBody() {
return this.pcBody;
}
public WalletAio getReceiver() {
return this.receiver;
}
public int getRedChannel() {
return this.redChannel;
}
public int getRedType() {
return this.redType;
}
public int getResend() {
return this.resend;
}
public long getSendUin() {
return this.sendUin;
}
public WalletAio getSender() {
return this.sender;
}
public int getSessiontype() {
return this.sessiontype;
}
public byte[] getStringIndex() {
return this.stringIndex;
}
public int getTemplateId() {
return this.templateId;
}
public String toString() {
return "WalletElement{sendUin=" + this.sendUin + ",sender=" + this.sender + ",receiver=" + this.receiver + ",channelId=" + this.channelId + ",templateId=" + this.templateId + ",resend=" + this.resend + ",msgPriority=" + this.msgPriority + ",redType=" + this.redType + ",billNo=" + this.billNo + ",authkey=" + this.authkey + ",sessiontype=" + this.sessiontype + ",msgType=" + this.msgType + ",envelopeId=" + this.envelopeId + ",name=" + this.name + ",confType=" + this.confType + ",msgFrom=" + this.msgFrom + ",pcBody=" + this.pcBody + ",stringIndex=" + this.stringIndex + ",redChannel=" + this.redChannel + ",grapUin=" + this.grapUin + ",pbReserve=" + this.pbReserve + ",grabState=" + this.grabState + ",grabbedAmount=" + this.grabbedAmount + ",}";
}
public WalletElement(long j2, WalletAio walletAio, WalletAio walletAio2, int i2, int i3, int i4, int i5, int i6, String str, String str2, int i7, int i8, int i9, String str3, int i10, int i11, byte[] bArr, byte[] bArr2, int i12, ArrayList<Long> arrayList, byte[] bArr3, int i13, long j3) {
this.sender = new WalletAio();
this.receiver = new WalletAio();
this.billNo = "";
this.authkey = "";
this.name = "";
this.pcBody = new byte[0];
this.stringIndex = new byte[0];
this.grapUin = new ArrayList<>();
this.pbReserve = new byte[0];
this.sendUin = j2;
this.sender = walletAio;
this.receiver = walletAio2;
this.channelId = i2;
this.templateId = i3;
this.resend = i4;
this.msgPriority = i5;
this.redType = i6;
this.billNo = str;
this.authkey = str2;
this.sessiontype = i7;
this.msgType = i8;
this.envelopeId = i9;
this.name = str3;
this.confType = i10;
this.msgFrom = i11;
this.pcBody = bArr;
this.stringIndex = bArr2;
this.redChannel = i12;
this.grapUin = arrayList;
this.pbReserve = bArr3;
this.grabState = i13;
this.grabbedAmount = j3;
}
}
| 4,695 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
TempChatServiceAssistantSession.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/TempChatServiceAssistantSession.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes22.dex */
public final class TempChatServiceAssistantSession {
long appId;
int appType;
String appTypeName;
public TempChatServiceAssistantSession() {
this.appTypeName = "";
}
public long getAppId() {
return this.appId;
}
public int getAppType() {
return this.appType;
}
public String getAppTypeName() {
return this.appTypeName;
}
public String toString() {
return "TempChatServiceAssistantSession{appType=" + this.appType + ",appId=" + this.appId + ",appTypeName=" + this.appTypeName + ",}";
}
public TempChatServiceAssistantSession(int i2, long j2, String str) {
this.appTypeName = "";
this.appType = i2;
this.appId = j2;
this.appTypeName = str;
}
}
| 886 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchGroupFileResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchGroupFileResult.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchGroupFileResult {
boolean isEnd;
ArrayList<SearchGroupFileItem> item;
int ownerMatchCount;
int reqId;
GroupFileCommonResult result;
String syncCookie;
int totalMatchCount;
public SearchGroupFileResult() {
this.result = new GroupFileCommonResult();
this.syncCookie = "";
this.item = new ArrayList<>();
}
public boolean getIsEnd() {
return this.isEnd;
}
public ArrayList<SearchGroupFileItem> getItem() {
return this.item;
}
public int getOwnerMatchCount() {
return this.ownerMatchCount;
}
public int getReqId() {
return this.reqId;
}
public GroupFileCommonResult getResult() {
return this.result;
}
public String getSyncCookie() {
return this.syncCookie;
}
public int getTotalMatchCount() {
return this.totalMatchCount;
}
public String toString() {
return "SearchGroupFileResult{result=" + this.result + ",syncCookie=" + this.syncCookie + ",totalMatchCount=" + this.totalMatchCount + ",ownerMatchCount=" + this.ownerMatchCount + ",isEnd=" + this.isEnd + ",reqId=" + this.reqId + ",item=" + this.item + ",}";
}
public SearchGroupFileResult(GroupFileCommonResult groupFileCommonResult, String str, int i2, int i3, boolean z, int i4, ArrayList<SearchGroupFileItem> arrayList) {
this.result = new GroupFileCommonResult();
this.syncCookie = "";
this.item = new ArrayList<>();
this.result = groupFileCommonResult;
this.syncCookie = str;
this.totalMatchCount = i2;
this.ownerMatchCount = i3;
this.isEnd = z;
this.reqId = i4;
this.item = arrayList;
}
}
| 1,887 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
InlineKeyboardClickInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/InlineKeyboardClickInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class InlineKeyboardClickInfo {
long botAppid;
String buttonId;
String callbackData;
int chatType;
int dmFlag;
String guildId;
long msgSeq;
String peerId;
public InlineKeyboardClickInfo() {
this.guildId = "";
this.peerId = "";
this.buttonId = "";
this.callbackData = "";
}
public long getBotAppid() {
return this.botAppid;
}
public String getButtonId() {
return this.buttonId;
}
public String getCallbackData() {
return this.callbackData;
}
public int getChatType() {
return this.chatType;
}
public int getDmFlag() {
return this.dmFlag;
}
public String getGuildId() {
return this.guildId;
}
public long getMsgSeq() {
return this.msgSeq;
}
public String getPeerId() {
return this.peerId;
}
public String toString() {
return "InlineKeyboardClickInfo{guildId=" + this.guildId + ",peerId=" + this.peerId + ",botAppid=" + this.botAppid + ",msgSeq=" + this.msgSeq + ",buttonId=" + this.buttonId + ",callbackData=" + this.callbackData + ",dmFlag=" + this.dmFlag + ",chatType=" + this.chatType + ",}";
}
public InlineKeyboardClickInfo(String str, String str2, long j2, long j3, String str3, String str4, int i2, int i3) {
this.guildId = "";
this.peerId = "";
this.buttonId = "";
this.callbackData = "";
this.guildId = str;
this.peerId = str2;
this.botAppid = j2;
this.msgSeq = j3;
this.buttonId = str3;
this.callbackData = str4;
this.dmFlag = i2;
this.chatType = i3;
}
}
| 1,812 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
StructLongMsgElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/StructLongMsgElement.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes.dex */
public final class StructLongMsgElement {
String resId;
String xmlContent;
public StructLongMsgElement() {
}
public String getResId() {
return this.resId;
}
public String getXmlContent() {
return this.xmlContent;
}
public String toString() {
return "StructLongMsgElement{xmlContent=" + this.xmlContent + ",resId=" + this.resId + ",}";
}
public StructLongMsgElement(String str, String str2) {
this.xmlContent = str;
this.resId = str2;
}
}
| 635 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProPollingData.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProPollingData.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProPollingData {
long channelId;
byte[] cookie;
byte[] data;
ArrayList<MsgAbstract> feedMsgAbstracts;
boolean forcePolling;
long guildId;
ArrayList<GProStickyChannel> guildStickyChannelList;
GProLiveResultItem liveResultItem;
ArrayList<MsgAbstract> msgAbstracts;
int type;
long updateTime;
long version;
GProChannelMemberInfos voiceChannel;
public GProPollingData() {
this.cookie = new byte[0];
this.data = new byte[0];
this.voiceChannel = new GProChannelMemberInfos();
this.liveResultItem = new GProLiveResultItem();
this.guildStickyChannelList = new ArrayList<>();
this.msgAbstracts = new ArrayList<>();
this.feedMsgAbstracts = new ArrayList<>();
}
public long getChannelId() {
return this.channelId;
}
public byte[] getCookie() {
return this.cookie;
}
public byte[] getData() {
return this.data;
}
public ArrayList<MsgAbstract> getFeedMsgAbstracts() {
return this.feedMsgAbstracts;
}
public boolean getForcePolling() {
return this.forcePolling;
}
public long getGuildId() {
return this.guildId;
}
public ArrayList<GProStickyChannel> getGuildStickyChannelList() {
return this.guildStickyChannelList;
}
public GProLiveResultItem getLiveResultItem() {
return this.liveResultItem;
}
public ArrayList<MsgAbstract> getMsgAbstracts() {
return this.msgAbstracts;
}
public int getType() {
return this.type;
}
public long getUpdateTime() {
return this.updateTime;
}
public long getVersion() {
return this.version;
}
public GProChannelMemberInfos getVoiceChannel() {
return this.voiceChannel;
}
public String toString() {
return "GProPollingData{type=" + this.type + ",guildId=" + this.guildId + ",channelId=" + this.channelId + ",version = " + this.version + ",cookie=" + this.cookie + ",data=" + this.data + ",voiceChannel=" + this.voiceChannel + ",liveResultItem=" + this.liveResultItem + ",guildStickyChannelList=" + this.guildStickyChannelList + ",msgAbstracts=" + this.msgAbstracts + ",feedMsgAbstracts=" + this.feedMsgAbstracts + ",forcePolling=" + this.forcePolling + ",updateTime=" + this.updateTime + ",}";
}
public GProPollingData(int i2, long j2, long j3, long j4, byte[] bArr, byte[] bArr2, GProChannelMemberInfos gProChannelMemberInfos, GProLiveResultItem gProLiveResultItem, ArrayList<GProStickyChannel> arrayList, ArrayList<MsgAbstract> arrayList2, ArrayList<MsgAbstract> arrayList3, boolean z, long j5) {
this.cookie = new byte[0];
this.data = new byte[0];
this.voiceChannel = new GProChannelMemberInfos();
this.liveResultItem = new GProLiveResultItem();
this.guildStickyChannelList = new ArrayList<>();
this.msgAbstracts = new ArrayList<>();
this.feedMsgAbstracts = new ArrayList<>();
this.type = i2;
this.guildId = j2;
this.channelId = j3;
this.version = j4;
this.cookie = bArr;
this.data = bArr2;
this.voiceChannel = gProChannelMemberInfos;
this.liveResultItem = gProLiveResultItem;
this.guildStickyChannelList = arrayList;
this.msgAbstracts = arrayList2;
this.feedMsgAbstracts = arrayList3;
this.forcePolling = z;
this.updateTime = j5;
}
}
| 3,608 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProCreateGuildGuideInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProCreateGuildGuideInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProCreateGuildGuideInfo {
long guildId;
int skipStatus;
ArrayList<GProTaskInfo> taskList;
public GProCreateGuildGuideInfo() {
this.taskList = new ArrayList<>();
}
public long getGuildId() {
return this.guildId;
}
public int getSkipStatus() {
return this.skipStatus;
}
public ArrayList<GProTaskInfo> getTaskList() {
return this.taskList;
}
public String toString() {
return "GProCreateGuildGuideInfo{guildId=" + this.guildId + ",skipStatus=" + this.skipStatus + ",taskList=" + this.taskList + ",}";
}
public GProCreateGuildGuideInfo(long j2, int i2, ArrayList<GProTaskInfo> arrayList) {
this.taskList = new ArrayList<>();
this.guildId = j2;
this.skipStatus = i2;
this.taskList = arrayList;
}
}
| 962 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
EmotionReactionInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/EmotionReactionInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class EmotionReactionInfo {
ArrayList<EmojiReaction> emojiReactionList;
String id;
long totalLikeCount;
public EmotionReactionInfo() {
this.id = "";
this.emojiReactionList = new ArrayList<>();
}
public ArrayList<EmojiReaction> getEmojiReactionList() {
return this.emojiReactionList;
}
public String getId() {
return this.id;
}
public long getTotalLikeCount() {
return this.totalLikeCount;
}
public String toString() {
return "EmotionReactionInfo{id=" + this.id + ",emojiReactionList=" + this.emojiReactionList + ",totalLikeCount=" + this.totalLikeCount + ",}";
}
public EmotionReactionInfo(String str, ArrayList<EmojiReaction> arrayList, long j2) {
this.id = "";
this.emojiReactionList = new ArrayList<>();
this.id = str;
this.emojiReactionList = arrayList;
this.totalLikeCount = j2;
}
}
| 1,089 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProJoinCondition.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProJoinCondition.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProJoinCondition {
GProAccountCondition accountCondition;
public GProJoinCondition() {
this.accountCondition = new GProAccountCondition();
}
public GProAccountCondition getAccountCondition() {
return this.accountCondition;
}
public String toString() {
return "GProJoinCondition{accountCondition=" + this.accountCondition + ",}";
}
public GProJoinCondition(GProAccountCondition gProAccountCondition) {
this.accountCondition = new GProAccountCondition();
this.accountCondition = gProAccountCondition;
}
}
| 685 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
MemberInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/MemberInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class MemberInfo implements IKernelModel {
String avatarPath;
String cardName;
int cardType;
boolean isDelete;
boolean isSpecialConcerned;
String nick;
String qid;
String remark;
MemberRole role;
long serialVersionUID;
int shutUpTime;
String uid;
long uin;
public MemberInfo() {
this.serialVersionUID = 1L;
this.uid = "";
this.qid = "";
this.nick = "";
this.remark = "";
this.cardName = "";
this.role = MemberRole.values()[0];
this.avatarPath = "";
}
public String getAvatarPath() {
return this.avatarPath;
}
public String getCardName() {
return this.cardName;
}
public int getCardType() {
return this.cardType;
}
public boolean getIsDelete() {
return this.isDelete;
}
public boolean getIsSpecialConcerned() {
return this.isSpecialConcerned;
}
public String getNick() {
return this.nick;
}
public String getQid() {
return this.qid;
}
public String getRemark() {
return this.remark;
}
public MemberRole getRole() {
return this.role;
}
public int getShutUpTime() {
return this.shutUpTime;
}
public String getUid() {
return this.uid;
}
public long getUin() {
return this.uin;
}
public void setAvatarPath(String str) {
this.avatarPath = str;
}
public void setCardName(String str) {
this.cardName = str;
}
public void setCardType(int i2) {
this.cardType = i2;
}
public void setIsDelete(boolean z) {
this.isDelete = z;
}
public void setIsSpecialConcerned(boolean z) {
this.isSpecialConcerned = z;
}
public void setNick(String str) {
this.nick = str;
}
public void setQid(String str) {
this.qid = str;
}
public void setRemark(String str) {
this.remark = str;
}
public void setRole(MemberRole memberRole) {
this.role = memberRole;
}
public void setShutUpTime(int i2) {
this.shutUpTime = i2;
}
public void setUid(String str) {
this.uid = str;
}
public void setUin(long j2) {
this.uin = j2;
}
public String toString() {
return "MemberInfo{uid=" + this.uid + ",qid=" + this.qid + ",uin=" + this.uin + ",nick=" + this.nick + ",remark=" + this.remark + ",cardType=" + this.cardType + ",cardName=" + this.cardName + ",role=" + this.role + ",avatarPath=" + this.avatarPath + ",shutUpTime=" + this.shutUpTime + ",isDelete=" + this.isDelete + ",isSpecialConcerned=" + this.isSpecialConcerned + ",}";
}
public MemberInfo(String str, String str2, long j2, String str3, String str4, int i2, String str5, MemberRole memberRole, String str6, int i3, boolean z, boolean z2) {
this.serialVersionUID = 1L;
this.uid = "";
this.qid = "";
this.nick = "";
this.remark = "";
this.cardName = "";
this.role = MemberRole.values()[0];
this.avatarPath = "";
this.uid = str;
this.qid = str2;
this.uin = j2;
this.nick = str3;
this.remark = str4;
this.cardType = i2;
this.cardName = str5;
this.role = memberRole;
this.avatarPath = str6;
this.shutUpTime = i3;
this.isDelete = z;
this.isSpecialConcerned = z2;
}
} | 3,555 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAVRoomAddUpInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAVRoomAddUpInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProAVRoomAddUpInfo {
GProAVDevOptInfo avDevOpt;
int micVolume;
String roomId;
public GProAVRoomAddUpInfo() {
this.roomId = "";
this.avDevOpt = new GProAVDevOptInfo();
}
public GProAVDevOptInfo getAvDevOpt() {
return this.avDevOpt;
}
public int getMicVolume() {
return this.micVolume;
}
public String getRoomId() {
return this.roomId;
}
public String toString() {
return "GProAVRoomAddUpInfo{roomId=" + this.roomId + ",avDevOpt=" + this.avDevOpt + ",micVolume=" + this.micVolume + ",}";
}
public GProAVRoomAddUpInfo(String str, GProAVDevOptInfo gProAVDevOptInfo, int i2) {
this.roomId = "";
this.avDevOpt = new GProAVDevOptInfo();
this.roomId = str;
this.avDevOpt = gProAVDevOptInfo;
this.micVolume = i2;
}
}
| 964 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProFeedbackReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProFeedbackReq.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProFeedbackReq {
GProItemCbData callback;
String contentType;
String feedId;
String feedbackType;
String scene;
public GProFeedbackReq() {
this.scene = "";
this.feedbackType = "";
this.feedId = "";
this.contentType = "";
this.callback = new GProItemCbData();
}
public GProItemCbData getCallback() {
return this.callback;
}
public String getContentType() {
return this.contentType;
}
public String getFeedId() {
return this.feedId;
}
public String getFeedbackType() {
return this.feedbackType;
}
public String getScene() {
return this.scene;
}
public String toString() {
return "GProFeedbackReq{scene=" + this.scene + ",feedbackType=" + this.feedbackType + ",feedId=" + this.feedId + ",contentType=" + this.contentType + ",callback=" + this.callback + ",}";
}
public GProFeedbackReq(String str, String str2, String str3, String str4, GProItemCbData gProItemCbData) {
this.scene = "";
this.feedbackType = "";
this.feedId = "";
this.contentType = "";
this.callback = new GProItemCbData();
this.scene = str;
this.feedbackType = str2;
this.feedId = str3;
this.contentType = str4;
this.callback = gProItemCbData;
}
}
| 1,473 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
VASMsgNamePlate.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/VASMsgNamePlate.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes.dex */
public final class VASMsgNamePlate {
ArrayList<Integer> carouselNamePlateIds;
Integer extendNamePlateId;
Integer gameNamePlateId;
Integer grayNamePlate;
Integer msgBigClubFlag;
Integer msgBigClubLevel;
Integer msgVipLevel;
Integer msgVipType;
Integer namePlateId;
Integer namePlateType;
Integer vipStarFlag;
public VASMsgNamePlate() {
this.carouselNamePlateIds = new ArrayList<>();
}
public ArrayList<Integer> getCarouselNamePlateIds() {
return this.carouselNamePlateIds;
}
public Integer getExtendNamePlateId() {
return this.extendNamePlateId;
}
public Integer getGameNamePlateId() {
return this.gameNamePlateId;
}
public Integer getGrayNamePlate() {
return this.grayNamePlate;
}
public Integer getMsgBigClubFlag() {
return this.msgBigClubFlag;
}
public Integer getMsgBigClubLevel() {
return this.msgBigClubLevel;
}
public Integer getMsgVipLevel() {
return this.msgVipLevel;
}
public Integer getMsgVipType() {
return this.msgVipType;
}
public Integer getNamePlateId() {
return this.namePlateId;
}
public Integer getNamePlateType() {
return this.namePlateType;
}
public Integer getVipStarFlag() {
return this.vipStarFlag;
}
public String toString() {
return "VASMsgNamePlate{msgVipType=" + this.msgVipType + ",msgVipLevel=" + this.msgVipLevel + ",msgBigClubFlag=" + this.msgBigClubFlag + ",msgBigClubLevel=" + this.msgBigClubLevel + ",grayNamePlate=" + this.grayNamePlate + ",namePlateType=" + this.namePlateType + ",vipStarFlag=" + this.vipStarFlag + ",namePlateId=" + this.namePlateId + ",carouselNamePlateIds=" + this.carouselNamePlateIds + ",extendNamePlateId=" + this.extendNamePlateId + ",gameNamePlateId=" + this.gameNamePlateId + ",}";
}
public VASMsgNamePlate(Integer num, Integer num2, Integer num3, Integer num4, Integer num5, Integer num6, Integer num7, Integer num8, ArrayList<Integer> arrayList, Integer num9, Integer num10) {
this.carouselNamePlateIds = new ArrayList<>();
this.msgVipType = num;
this.msgVipLevel = num2;
this.msgBigClubFlag = num3;
this.msgBigClubLevel = num4;
this.grayNamePlate = num5;
this.namePlateType = num6;
this.vipStarFlag = num7;
this.namePlateId = num8;
this.carouselNamePlateIds = arrayList;
this.extendNamePlateId = num9;
this.gameNamePlateId = num10;
}
}
| 2,681 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupFileSortType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupFileSortType.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public enum GroupFileSortType {
KUNKNOWN,
KSORTBYTIMESTAMP,
KSORTBYFILETYPE,
KSORTBYUPLOADER,
KSORTBYFILENAME,
KSORTBYFILESORT,
KSORTBYDOWNLOAD
}
| 279 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGetDiscoverRecommendGuildsReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGetDiscoverRecommendGuildsReq.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProGetDiscoverRecommendGuildsReq {
int businessType;
byte[] cookies;
GProBottomTabSourceInfo source;
int topN;
public GProGetDiscoverRecommendGuildsReq() {
this.cookies = new byte[0];
this.source = new GProBottomTabSourceInfo();
}
public int getBusinessType() {
return this.businessType;
}
public byte[] getCookies() {
return this.cookies;
}
public GProBottomTabSourceInfo getSource() {
return this.source;
}
public int getTopN() {
return this.topN;
}
public String toString() {
return "GProGetDiscoverRecommendGuildsReq{businessType=" + this.businessType + ",cookies=" + this.cookies + ",source=" + this.source + ",topN=" + this.topN + ",}";
}
public GProGetDiscoverRecommendGuildsReq(int i2, byte[] bArr, GProBottomTabSourceInfo gProBottomTabSourceInfo, int i3) {
this.cookies = new byte[0];
this.source = new GProBottomTabSourceInfo();
this.businessType = i2;
this.cookies = bArr;
this.source = gProBottomTabSourceInfo;
this.topN = i3;
}
}
| 1,228 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchMsgKeywordsResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchMsgKeywordsResult.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchMsgKeywordsResult implements IKernelModel {
boolean hasMore;
ArrayList<SearchMsgItem> resultItems;
int searchId;
public SearchMsgKeywordsResult() {
this.resultItems = new ArrayList<>();
}
public boolean getHasMore() {
return this.hasMore;
}
public ArrayList<SearchMsgItem> getResultItems() {
return this.resultItems;
}
public int getSearchId() {
return this.searchId;
}
public String toString() {
return "SearchMsgKeywordsResult{searchId=" + this.searchId + ",hasMore=" + this.hasMore + ",resultItems=" + this.resultItems + ",}";
}
public SearchMsgKeywordsResult(int i2, boolean z, ArrayList<SearchMsgItem> arrayList) {
this.resultItems = new ArrayList<>();
this.searchId = i2;
this.hasMore = z;
this.resultItems = arrayList;
}
}
| 1,026 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupListUpdateType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupListUpdateType.java | package com.tencent.qqnt.kernel.nativeinterface;
public enum GroupListUpdateType {
REFRESHALL,
GETALL,
MODIFIED,
REMOVE
} | 138 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRoleMemberList.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRoleMemberList.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProRoleMemberList {
ArrayList<GProUser> members;
GProGuildRole role;
public GProRoleMemberList() {
this.role = new GProGuildRole();
this.members = new ArrayList<>();
}
public ArrayList<GProUser> getMembers() {
return this.members;
}
public GProGuildRole getRole() {
return this.role;
}
public String toString() {
return "GProRoleMemberList{role=" + this.role + ",members=" + this.members + ",}";
}
public GProRoleMemberList(GProGuildRole gProGuildRole, ArrayList<GProUser> arrayList) {
this.role = new GProGuildRole();
this.members = new ArrayList<>();
this.role = gProGuildRole;
this.members = arrayList;
}
}
| 866 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProChannelPresenceMemberInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProChannelPresenceMemberInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProChannelPresenceMemberInfo implements Serializable {
String bytesAvatarMeta;
long serialVersionUID;
long tinyId;
public GProChannelPresenceMemberInfo() {
this.serialVersionUID = 1L;
this.bytesAvatarMeta = "";
}
public String getBytesAvatarMeta() {
return this.bytesAvatarMeta;
}
public long getTinyId() {
return this.tinyId;
}
public String toString() {
return "GProChannelPresenceMemberInfo{tinyId=" + this.tinyId + ",bytesAvatarMeta=" + this.bytesAvatarMeta + ",}";
}
public GProChannelPresenceMemberInfo(long j2, String str) {
this.serialVersionUID = 1L;
this.bytesAvatarMeta = "";
this.tinyId = j2;
this.bytesAvatarMeta = str;
}
}
| 898 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchCacheInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchCacheInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class SearchCacheInfo {
ArrayList<String> fields;
String id;
public SearchCacheInfo() {
this.id = "";
this.fields = new ArrayList<>();
}
public ArrayList<String> getFields() {
return this.fields;
}
public String getId() {
return this.id;
}
public String toString() {
return "SearchCacheInfo{id=" + this.id + ",fields=" + this.fields + ",}";
}
public SearchCacheInfo(String str, ArrayList<String> arrayList) {
this.id = "";
this.fields = new ArrayList<>();
this.id = str;
this.fields = arrayList;
}
}
| 772 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGetRecommendHotReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGetRecommendHotReq.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProGetRecommendHotReq implements Serializable {
byte[] adReq;
String busiInfo;
byte[] cookies;
int direction;
int refreshNum;
long serialVersionUID;
GProBottomTabSourceInfo source;
public GProGetRecommendHotReq() {
this.serialVersionUID = 1L;
this.source = new GProBottomTabSourceInfo();
this.cookies = new byte[0];
this.busiInfo = "";
this.adReq = new byte[0];
}
public byte[] getAdReq() {
return this.adReq;
}
public String getBusiInfo() {
return this.busiInfo;
}
public byte[] getCookies() {
return this.cookies;
}
public int getDirection() {
return this.direction;
}
public int getRefreshNum() {
return this.refreshNum;
}
public GProBottomTabSourceInfo getSource() {
return this.source;
}
public String toString() {
return "GProGetRecommendHotReq{source=" + this.source + ",cookies=" + this.cookies + ",direction=" + this.direction + ",refreshNum=" + this.refreshNum + ",busiInfo=" + this.busiInfo + ",adReq=" + this.adReq + ",}";
}
public GProGetRecommendHotReq(GProBottomTabSourceInfo gProBottomTabSourceInfo, byte[] bArr, int i2, int i3, String str, byte[] bArr2) {
this.serialVersionUID = 1L;
this.source = new GProBottomTabSourceInfo();
this.cookies = new byte[0];
this.busiInfo = "";
this.adReq = new byte[0];
this.source = gProBottomTabSourceInfo;
this.cookies = bArr;
this.direction = i2;
this.refreshNum = i3;
this.busiInfo = str;
this.adReq = bArr2;
}
}
| 1,793 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
InlineKeyboardRow.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/InlineKeyboardRow.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class InlineKeyboardRow {
ArrayList<InlineKeyboardButton> buttons;
public InlineKeyboardRow() {
this.buttons = new ArrayList<>();
}
public ArrayList<InlineKeyboardButton> getButtons() {
return this.buttons;
}
public String toString() {
return "InlineKeyboardRow{buttons=" + this.buttons + ",}";
}
public InlineKeyboardRow(ArrayList<InlineKeyboardButton> arrayList) {
this.buttons = new ArrayList<>();
this.buttons = arrayList;
}
}
| 658 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGetRecommendV2Rsp.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGetRecommendV2Rsp.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProGetRecommendV2Rsp implements Serializable {
GProBannerBlockList banners;
byte[] cookies;
int discoverType;
GProRecommendExtInfo extInfo;
GProPopBlockList popups;
long serialVersionUID;
GProRecommendV2TracksBlockList tracks;
public GProGetRecommendV2Rsp() {
this.serialVersionUID = 1L;
this.banners = new GProBannerBlockList();
this.tracks = new GProRecommendV2TracksBlockList();
this.extInfo = new GProRecommendExtInfo();
this.cookies = new byte[0];
this.popups = new GProPopBlockList();
}
public GProBannerBlockList getBanners() {
return this.banners;
}
public byte[] getCookies() {
return this.cookies;
}
public int getDiscoverType() {
return this.discoverType;
}
public GProRecommendExtInfo getExtInfo() {
return this.extInfo;
}
public GProPopBlockList getPopups() {
return this.popups;
}
public GProRecommendV2TracksBlockList getTracks() {
return this.tracks;
}
public String toString() {
return "GProGetRecommendV2Rsp{discoverType=" + this.discoverType + ",banners=" + this.banners + ",tracks=" + this.tracks + ",extInfo=" + this.extInfo + ",cookies=" + this.cookies + ",popups=" + this.popups + ",}";
}
public GProGetRecommendV2Rsp(int i2, GProBannerBlockList gProBannerBlockList, GProRecommendV2TracksBlockList gProRecommendV2TracksBlockList, GProRecommendExtInfo gProRecommendExtInfo, byte[] bArr, GProPopBlockList gProPopBlockList) {
this.serialVersionUID = 1L;
this.banners = new GProBannerBlockList();
this.tracks = new GProRecommendV2TracksBlockList();
this.extInfo = new GProRecommendExtInfo();
this.cookies = new byte[0];
this.popups = new GProPopBlockList();
this.discoverType = i2;
this.banners = gProBannerBlockList;
this.tracks = gProRecommendV2TracksBlockList;
this.extInfo = gProRecommendExtInfo;
this.cookies = bArr;
this.popups = gProPopBlockList;
}
}
| 2,218 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
IOperateTransferInfoCallback.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IOperateTransferInfoCallback.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
public interface IOperateTransferInfoCallback {
void onResult(int i2, String str, ArrayList<Long> arrayList);
} | 194 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProDiscoverStatus.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProDiscoverStatus.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProDiscoverStatus {
int nextTs;
int state;
int type;
public GProDiscoverStatus() {
}
public int getNextTs() {
return this.nextTs;
}
public int getState() {
return this.state;
}
public int getType() {
return this.type;
}
public String toString() {
return "GProDiscoverStatus{type=" + this.type + ",state=" + this.state + ",nextTs=" + this.nextTs + ",}";
}
public GProDiscoverStatus(int i2, int i3, int i4) {
this.type = i2;
this.state = i3;
this.nextTs = i4;
}
}
| 686 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProSignGuildInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProSignGuildInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes4.dex */
public final class GProSignGuildInfo {
String desc;
long endTime;
long guildId;
String guildName;
long startTime;
String url;
public GProSignGuildInfo() {
this.guildName = "";
this.url = "";
this.desc = "";
}
public String getDesc() {
return this.desc;
}
public long getEndTime() {
return this.endTime;
}
public long getGuildId() {
return this.guildId;
}
public String getGuildName() {
return this.guildName;
}
public long getStartTime() {
return this.startTime;
}
public String getUrl() {
return this.url;
}
public String toString() {
return "GProSignGuildInfo{guildId=" + this.guildId + ",guildName=" + this.guildName + ",startTime=" + this.startTime + ",endTime=" + this.endTime + ",url = " + this.url + ",desc=" + this.desc + ",}";
}
public GProSignGuildInfo(long j2, String str, long j3, long j4, String str2, String str3) {
this.guildName = "";
this.url = "";
this.desc = "";
this.guildId = j2;
this.guildName = str;
this.startTime = j3;
this.endTime = j4;
this.url = str2;
this.desc = str3;
}
}
| 1,343 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GproGuildSpeakableRule.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GproGuildSpeakableRule.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class GproGuildSpeakableRule {
Boolean isProhibiteLink;
Boolean isProhibiteQrCodePicture;
Boolean isProhibiteRedEnvelope;
public GproGuildSpeakableRule() {
}
public Boolean getIsProhibiteLink() {
return this.isProhibiteLink;
}
public Boolean getIsProhibiteQrCodePicture() {
return this.isProhibiteQrCodePicture;
}
public Boolean getIsProhibiteRedEnvelope() {
return this.isProhibiteRedEnvelope;
}
public String toString() {
return "GproGuildSpeakableRule{isProhibiteRedEnvelope=" + this.isProhibiteRedEnvelope + ",isProhibiteLink=" + this.isProhibiteLink + ",isProhibiteQrCodePicture=" + this.isProhibiteQrCodePicture + ",}";
}
public GproGuildSpeakableRule(Boolean bool, Boolean bool2, Boolean bool3) {
this.isProhibiteRedEnvelope = bool;
this.isProhibiteLink = bool2;
this.isProhibiteQrCodePicture = bool3;
}
}
| 1,053 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GiphyElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GiphyElement.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class GiphyElement {
int height;
String id;
boolean isClip;
int width;
public GiphyElement() {
this.id = "";
}
public int getHeight() {
return this.height;
}
public String getId() {
return this.id;
}
public boolean getIsClip() {
return this.isClip;
}
public int getWidth() {
return this.width;
}
public String toString() {
return "GiphyElement{id=" + this.id + ",isClip=" + this.isClip + ",width=" + this.width + ",height=" + this.height + ",}";
}
public GiphyElement(String str, boolean z, int i2, int i3) {
this.id = "";
this.id = str;
this.isClip = z;
this.width = i2;
this.height = i3;
}
} | 823 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProTopFeedAbstract.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProTopFeedAbstract.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProTopFeedAbstract {
GProThumbnail thumbnail;
String title;
public GProTopFeedAbstract() {
this.title = "";
this.thumbnail = new GProThumbnail();
}
public GProThumbnail getThumbnail() {
return this.thumbnail;
}
public String getTitle() {
return this.title;
}
public String toString() {
return "GProTopFeedAbstract{title=" + this.title + ",thumbnail=" + this.thumbnail + ",}";
}
public GProTopFeedAbstract(String str, GProThumbnail gProThumbnail) {
this.title = "";
this.thumbnail = new GProThumbnail();
this.title = str;
this.thumbnail = gProThumbnail;
}
}
| 784 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAuthControlSwitchInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAuthControlSwitchInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProAuthControlSwitchInfo {
int Permission;
int authControlSwitchType;
public GProAuthControlSwitchInfo() {
}
public int getAuthControlSwitchType() {
return this.authControlSwitchType;
}
public int getPermission() {
return this.Permission;
}
public String toString() {
return "GProAuthControlSwitchInfo{authControlSwitchType=" + this.authControlSwitchType + ",Permission=" + this.Permission + ",}";
}
public GProAuthControlSwitchInfo(int i2, int i3) {
this.authControlSwitchType = i2;
this.Permission = i3;
}
}
| 705 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGetRecommendV2Req.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGetRecommendV2Req.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProGetRecommendV2Req implements Serializable {
String block;
byte[] cookies;
long serialVersionUID;
GProBottomTabSourceInfo source;
long subBlockId;
public GProGetRecommendV2Req() {
this.serialVersionUID = 1L;
this.block = "";
this.cookies = new byte[0];
this.source = new GProBottomTabSourceInfo();
}
public String getBlock() {
return this.block;
}
public byte[] getCookies() {
return this.cookies;
}
public GProBottomTabSourceInfo getSource() {
return this.source;
}
public long getSubBlockId() {
return this.subBlockId;
}
public String toString() {
return "GProGetRecommendV2Req{block=" + this.block + ",subBlockId=" + this.subBlockId + ",cookies=" + this.cookies + ",source=" + this.source + ",}";
}
public GProGetRecommendV2Req(String str, long j2, byte[] bArr, GProBottomTabSourceInfo gProBottomTabSourceInfo) {
this.serialVersionUID = 1L;
this.block = "";
this.cookies = new byte[0];
this.source = new GProBottomTabSourceInfo();
this.block = str;
this.subBlockId = j2;
this.cookies = bArr;
this.source = gProBottomTabSourceInfo;
}
}
| 1,391 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupGuildNotifyInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupGuildNotifyInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class GroupGuildNotifyInfo {
long channelId;
int muteSwitch;
Contact peer;
ArrayList<SceneDetailInfo> sceneDetailInfo;
long senderUin;
Summary summary;
long timeStamp;
public GroupGuildNotifyInfo() {
this.peer = new Contact();
this.sceneDetailInfo = new ArrayList<>();
this.summary = new Summary();
}
public long getChannelId() {
return this.channelId;
}
public int getMuteSwitch() {
return this.muteSwitch;
}
public Contact getPeer() {
return this.peer;
}
public ArrayList<SceneDetailInfo> getSceneDetailInfo() {
return this.sceneDetailInfo;
}
public long getSenderUin() {
return this.senderUin;
}
public Summary getSummary() {
return this.summary;
}
public long getTimeStamp() {
return this.timeStamp;
}
public String toString() {
return "GroupGuildNotifyInfo{peer=" + this.peer + ",sceneDetailInfo=" + this.sceneDetailInfo + ",timeStamp=" + this.timeStamp + ",muteSwitch=" + this.muteSwitch + ",senderUin=" + this.senderUin + ",summary=" + this.summary + ",channelId=" + this.channelId + ",}";
}
public GroupGuildNotifyInfo(Contact contact, ArrayList<SceneDetailInfo> arrayList, long j2, int i2, long j3, Summary summary, long j4) {
this.peer = new Contact();
this.sceneDetailInfo = new ArrayList<>();
this.summary = new Summary();
this.peer = contact;
this.sceneDetailInfo = arrayList;
this.timeStamp = j2;
this.muteSwitch = i2;
this.senderUin = j3;
this.summary = summary;
this.channelId = j4;
}
}
| 1,836 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
IGroupFileInfoCallback.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IGroupFileInfoCallback.java | package com.tencent.qqnt.kernel.nativeinterface;
public interface IGroupFileInfoCallback {
void onResult(int i2, String str, GroupFileInfoResult groupFileInfoResult);
} | 173 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
MoveGroupFileResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/MoveGroupFileResult.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class MoveGroupFileResult {
String fileId;
String parentFolderId;
GroupFileCommonResult result;
public MoveGroupFileResult() {
this.result = new GroupFileCommonResult();
this.parentFolderId = "";
this.fileId = "";
}
public String getFileId() {
return this.fileId;
}
public String getParentFolderId() {
return this.parentFolderId;
}
public GroupFileCommonResult getResult() {
return this.result;
}
public String toString() {
return "MoveGroupFileResult{result=" + this.result + ",parentFolderId=" + this.parentFolderId + ",fileId=" + this.fileId + ",}";
}
public MoveGroupFileResult(GroupFileCommonResult groupFileCommonResult, String str, String str2) {
this.result = new GroupFileCommonResult();
this.parentFolderId = "";
this.fileId = "";
this.result = groupFileCommonResult;
this.parentFolderId = str;
this.fileId = str2;
}
} | 1,061 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProUnifiedEssenceInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProUnifiedEssenceInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProUnifiedEssenceInfo implements Serializable {
ArrayList<GProEssenceChannel> channels;
String content;
Long operatorName;
long serialVersionUID;
Integer status;
String title;
Integer type;
long uniqueId;
String visitorMsg;
public GProUnifiedEssenceInfo() {
this.serialVersionUID = 1L;
this.content = "";
this.channels = new ArrayList<>();
this.visitorMsg = "";
}
public ArrayList<GProEssenceChannel> getChannels() {
return this.channels;
}
public String getContent() {
return this.content;
}
public Long getOperatorName() {
return this.operatorName;
}
public Integer getStatus() {
return this.status;
}
public String getTitle() {
return this.title;
}
public Integer getType() {
return this.type;
}
public long getUniqueId() {
return this.uniqueId;
}
public String getVisitorMsg() {
return this.visitorMsg;
}
public String toString() {
return "GProUnifiedEssenceInfo{type=" + this.type + ",title=" + this.title + ",content=" + this.content + ",operatorName=" + this.operatorName + ",channels=" + this.channels + ",status=" + this.status + ",uniqueId=" + this.uniqueId + ",visitorMsg=" + this.visitorMsg + ",}";
}
public GProUnifiedEssenceInfo(Integer num, String str, String str2, Long l2, ArrayList<GProEssenceChannel> arrayList, Integer num2, long j2, String str3) {
this.serialVersionUID = 1L;
this.content = "";
this.channels = new ArrayList<>();
this.visitorMsg = "";
this.type = num;
this.title = str;
this.content = str2;
this.operatorName = l2;
this.channels = arrayList;
this.status = num2;
this.uniqueId = j2;
this.visitorMsg = str3;
}
}
| 2,043 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRobotStateInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRobotStateInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProRobotStateInfo implements Serializable {
long botTrtcId;
boolean noLoopInfo;
int playState;
String playText;
long serialVersionUID;
public GProRobotStateInfo() {
this.serialVersionUID = 1L;
this.playText = "";
}
public long getBotTrtcId() {
return this.botTrtcId;
}
public boolean getNoLoopInfo() {
return this.noLoopInfo;
}
public int getPlayState() {
return this.playState;
}
public String getPlayText() {
return this.playText;
}
public String toString() {
return "GProRobotStateInfo{playState=" + this.playState + ",playText=" + this.playText + ",noLoopInfo=" + this.noLoopInfo + ",botTrtcId=" + this.botTrtcId + ",}";
}
public GProRobotStateInfo(int i2, String str, boolean z, long j2) {
this.serialVersionUID = 1L;
this.playText = "";
this.playState = i2;
this.playText = str;
this.noLoopInfo = z;
this.botTrtcId = j2;
}
}
| 1,150 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProDirectMsgReport.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProDirectMsgReport.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProDirectMsgReport {
long guildId;
byte[] meta;
long readCntSeq;
long readCntTime;
long readMsgSeq;
long readMsgTime;
public GProDirectMsgReport() {
this.meta = new byte[0];
}
public long getGuildId() {
return this.guildId;
}
public byte[] getMeta() {
return this.meta;
}
public long getReadCntSeq() {
return this.readCntSeq;
}
public long getReadCntTime() {
return this.readCntTime;
}
public long getReadMsgSeq() {
return this.readMsgSeq;
}
public long getReadMsgTime() {
return this.readMsgTime;
}
public String toString() {
return "GProDirectMsgReport{guildId=" + this.guildId + ",readMsgSeq=" + this.readMsgSeq + ",readMsgTime=" + this.readMsgTime + ",readCntSeq=" + this.readCntSeq + ",readCntTime=" + this.readCntTime + ",meta=" + this.meta + ",}";
}
public GProDirectMsgReport(long j2, long j3, long j4, long j5, long j6, byte[] bArr) {
this.meta = new byte[0];
this.guildId = j2;
this.readMsgSeq = j3;
this.readMsgTime = j4;
this.readCntSeq = j5;
this.readCntTime = j6;
this.meta = bArr;
}
}
| 1,327 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProInviteSpeakCfg.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProInviteSpeakCfg.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes4.dex */
public final class GProInviteSpeakCfg implements Serializable {
int inviteSpeakState;
long serialVersionUID = 1;
public GProInviteSpeakCfg() {
}
public int getInviteSpeakState() {
return this.inviteSpeakState;
}
public String toString() {
return "GProInviteSpeakCfg{inviteSpeakState=" + this.inviteSpeakState + ",}";
}
public GProInviteSpeakCfg(int i2) {
this.inviteSpeakState = i2;
}
}
| 567 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProUserBarNodePermission.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProUserBarNodePermission.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProUserBarNodePermission implements Serializable {
int nodeType;
long serialVersionUID = 1;
int visibleType;
public GProUserBarNodePermission() {
}
public int getNodeType() {
return this.nodeType;
}
public int getVisibleType() {
return this.visibleType;
}
public String toString() {
return "GProUserBarNodePermission{nodeType=" + this.nodeType + ",visibleType=" + this.visibleType + ",}";
}
public GProUserBarNodePermission(int i2, int i3) {
this.nodeType = i2;
this.visibleType = i3;
}
}
| 718 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
IKernelGetUidInfoCallback.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IKernelGetUidInfoCallback.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.HashMap;
public interface IKernelGetUidInfoCallback {
void onResult(HashMap<Long, String> hashMap);
} | 173 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProVoiceSmobaGameBaseRoomParams.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProVoiceSmobaGameBaseRoomParams.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProVoiceSmobaGameBaseRoomParams {
long channelId;
long guildId;
int roomType;
public GProVoiceSmobaGameBaseRoomParams() {
}
public long getChannelId() {
return this.channelId;
}
public long getGuildId() {
return this.guildId;
}
public int getRoomType() {
return this.roomType;
}
public String toString() {
return "GProVoiceSmobaGameBaseRoomParams{roomType=" + this.roomType + ",guildId=" + this.guildId + ",channelId=" + this.channelId + ",}";
}
public GProVoiceSmobaGameBaseRoomParams(int i2, long j2, long j3) {
this.roomType = i2;
this.guildId = j2;
this.channelId = j3;
}
}
| 802 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProJumpChannelInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProJumpChannelInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProJumpChannelInfo {
long channelId;
boolean isSwitchOn;
public GProJumpChannelInfo() {
}
public long getChannelId() {
return this.channelId;
}
public boolean getIsSwitchOn() {
return this.isSwitchOn;
}
public String toString() {
return "GProJumpChannelInfo{isSwitchOn=" + this.isSwitchOn + ",channelId=" + this.channelId + ",}";
}
public GProJumpChannelInfo(boolean z, long j2) {
this.isSwitchOn = z;
this.channelId = j2;
}
}
| 622 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProUserGiftRankInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProUserGiftRankInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes22.dex */
public final class GProUserGiftRankInfo implements Serializable {
long channelId;
long guildId;
String jumpUrl;
String rankInfo;
long serialVersionUID;
int topNum;
GProUser userInfo;
public GProUserGiftRankInfo() {
this.serialVersionUID = 1L;
this.userInfo = new GProUser();
this.rankInfo = "";
this.jumpUrl = "";
}
public long getChannelId() {
return this.channelId;
}
public long getGuildId() {
return this.guildId;
}
public String getJumpUrl() {
return this.jumpUrl;
}
public String getRankInfo() {
return this.rankInfo;
}
public int getTopNum() {
return this.topNum;
}
public GProUser getUserInfo() {
return this.userInfo;
}
public String toString() {
return "GProUserGiftRankInfo{guildId=" + this.guildId + ",channelId=" + this.channelId + ",userInfo=" + this.userInfo + ",rankInfo=" + this.rankInfo + ",topNum=" + this.topNum + ",jumpUrl=" + this.jumpUrl + ",}";
}
public GProUserGiftRankInfo(long j2, long j3, GProUser gProUser, String str, int i2, String str2) {
this.serialVersionUID = 1L;
this.userInfo = new GProUser();
this.rankInfo = "";
this.jumpUrl = "";
this.guildId = j2;
this.channelId = j3;
this.userInfo = gProUser;
this.rankInfo = str;
this.topNum = i2;
this.jumpUrl = str2;
}
}
| 1,590 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProCreatedGuildInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProCreatedGuildInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProCreatedGuildInfo {
long createTime;
String faceUrl;
long guildId;
String guildName;
long guildOwnerUin;
long memberNum;
public GProCreatedGuildInfo() {
this.guildName = "";
this.faceUrl = "";
}
public long getCreateTime() {
return this.createTime;
}
public String getFaceUrl() {
return this.faceUrl;
}
public long getGuildId() {
return this.guildId;
}
public String getGuildName() {
return this.guildName;
}
public long getGuildOwnerUin() {
return this.guildOwnerUin;
}
public long getMemberNum() {
return this.memberNum;
}
public String toString() {
return "GProCreatedGuildInfo{guildOwnerUin=" + this.guildOwnerUin + ",guildId=" + this.guildId + ",guildName=" + this.guildName + ",createTime=" + this.createTime + ",memberNum=" + this.memberNum + ",faceUrl=" + this.faceUrl + ",}";
}
public GProCreatedGuildInfo(long j2, long j3, String str, long j4, long j5, String str2) {
this.guildName = "";
this.faceUrl = "";
this.guildOwnerUin = j2;
this.guildId = j3;
this.guildName = str;
this.createTime = j4;
this.memberNum = j5;
this.faceUrl = str2;
}
}
| 1,397 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProFDLStCommonExt.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProFDLStCommonExt.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes4.dex */
public final class GProFDLStCommonExt {
ArrayList<GProFDLEntry> mapInfo;
public GProFDLStCommonExt() {
this.mapInfo = new ArrayList<>();
}
public ArrayList<GProFDLEntry> getMapInfo() {
return this.mapInfo;
}
public String toString() {
return "GProFDLStCommonExt{mapInfo=" + this.mapInfo + ",}";
}
public GProFDLStCommonExt(ArrayList<GProFDLEntry> arrayList) {
this.mapInfo = new ArrayList<>();
this.mapInfo = arrayList;
}
}
| 615 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
IRenameGroupFileCallback.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IRenameGroupFileCallback.java | package com.tencent.qqnt.kernel.nativeinterface;
public interface IRenameGroupFileCallback {
void onResult(int i2, String str, RenameGroupFileResult renameGroupFileResult);
}
| 180 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRichTitleElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRichTitleElement.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProRichTitleElement {
String text;
Integer type;
String url;
public GProRichTitleElement() {
}
public String getText() {
return this.text;
}
public Integer getType() {
return this.type;
}
public String getUrl() {
return this.url;
}
public String toString() {
return "GProRichTitleElement{type=" + this.type + ",text=" + this.text + ",url = " + this.url + ",}";
}
public GProRichTitleElement(Integer num, String str, String str2) {
this.type = num;
this.text = str;
this.url = str2;
}
}
| 712 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProBotFeatureInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProBotFeatureInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProBotFeatureInfo {
String availableRangeDesc;
String desc;
int id;
long mark;
String name;
int status;
int type;
String url;
public GProBotFeatureInfo() {
this.name = "";
this.desc = "";
this.url = "";
this.availableRangeDesc = "";
}
public String getAvailableRangeDesc() {
return this.availableRangeDesc;
}
public String getDesc() {
return this.desc;
}
public int getId() {
return this.id;
}
public long getMark() {
return this.mark;
}
public String getName() {
return this.name;
}
public int getStatus() {
return this.status;
}
public int getType() {
return this.type;
}
public String getUrl() {
return this.url;
}
public String toString() {
return "GProBotFeatureInfo{id=" + this.id + ",name=" + this.name + ",desc=" + this.desc + ",status=" + this.status + ",url = " + this.url + ",type=" + this.type + ",availableRangeDesc=" + this.availableRangeDesc + ",mark=" + this.mark + ",}";
}
public GProBotFeatureInfo(int i2, String str, String str2, int i3, String str3, int i4, String str4, long j2) {
this.name = "";
this.desc = "";
this.url = "";
this.availableRangeDesc = "";
this.id = i2;
this.name = str;
this.desc = str2;
this.status = i3;
this.url = str3;
this.type = i4;
this.availableRangeDesc = str4;
this.mark = j2;
}
}
| 1,666 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.