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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
GProSearchDataFilter.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProSearchDataFilter.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProSearchDataFilter {
boolean channelManager;
public GProSearchDataFilter() {
}
public boolean getChannelManager() {
return this.channelManager;
}
public String toString() {
return "GProSearchDataFilter{channelManager=" + this.channelManager + ",}";
}
public GProSearchDataFilter(boolean z) {
this.channelManager = z;
}
}
| 488 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProConvertThirdIdRsp.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProConvertThirdIdRsp.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProConvertThirdIdRsp {
ArrayList<String> ids;
ArrayList<String> stringIds;
public GProConvertThirdIdRsp() {
this.ids = new ArrayList<>();
this.stringIds = new ArrayList<>();
}
public ArrayList<String> getIds() {
return this.ids;
}
public ArrayList<String> getStringIds() {
return this.stringIds;
}
public String toString() {
return "GProConvertThirdIdRsp{ids=" + this.ids + ",stringIds=" + this.stringIds + ",}";
}
public GProConvertThirdIdRsp(ArrayList<String> arrayList, ArrayList<String> arrayList2) {
this.ids = new ArrayList<>();
this.stringIds = new ArrayList<>();
this.ids = arrayList;
this.stringIds = arrayList2;
}
}
| 882 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAnchorSetRoomInfoReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAnchorSetRoomInfoReq.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProAnchorSetRoomInfoReq {
ArrayList<GProAnchorTlv> attrs;
String machine;
String programId;
Long roomId;
String source;
GProLiveRoomRichTitle tags;
public GProAnchorSetRoomInfoReq() {
this.attrs = new ArrayList<>();
}
public ArrayList<GProAnchorTlv> getAttrs() {
return this.attrs;
}
public String getMachine() {
return this.machine;
}
public String getProgramId() {
return this.programId;
}
public Long getRoomId() {
return this.roomId;
}
public String getSource() {
return this.source;
}
public GProLiveRoomRichTitle getTags() {
return this.tags;
}
public String toString() {
return "GProAnchorSetRoomInfoReq{roomId=" + this.roomId + ",attrs=" + this.attrs + ",programId=" + this.programId + ",tags=" + this.tags + ",source=" + this.source + ",machine=" + this.machine + ",}";
}
public GProAnchorSetRoomInfoReq(Long l2, ArrayList<GProAnchorTlv> arrayList, String str, GProLiveRoomRichTitle gProLiveRoomRichTitle, String str2, String str3) {
this.attrs = new ArrayList<>();
this.roomId = l2;
this.attrs = arrayList;
this.programId = str;
this.tags = gProLiveRoomRichTitle;
this.source = str2;
this.machine = str3;
}
}
| 1,475 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProIdentityInstruction.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProIdentityInstruction.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProIdentityInstruction {
ArrayList<GProIdentity> identityList;
String instructionText;
String memberListPreviewImg;
String noteText;
String sampleIdentityDesc;
String textChannelPreviewImg;
public GProIdentityInstruction() {
this.instructionText = "";
this.noteText = "";
this.textChannelPreviewImg = "";
this.memberListPreviewImg = "";
this.sampleIdentityDesc = "";
this.identityList = new ArrayList<>();
}
public ArrayList<GProIdentity> getIdentityList() {
return this.identityList;
}
public String getInstructionText() {
return this.instructionText;
}
public String getMemberListPreviewImg() {
return this.memberListPreviewImg;
}
public String getNoteText() {
return this.noteText;
}
public String getSampleIdentityDesc() {
return this.sampleIdentityDesc;
}
public String getTextChannelPreviewImg() {
return this.textChannelPreviewImg;
}
public String toString() {
return "GProIdentityInstruction{instructionText=" + this.instructionText + ",noteText=" + this.noteText + ",textChannelPreviewImg=" + this.textChannelPreviewImg + ",memberListPreviewImg=" + this.memberListPreviewImg + ",sampleIdentityDesc=" + this.sampleIdentityDesc + ",identityList=" + this.identityList + ",}";
}
public GProIdentityInstruction(String str, String str2, String str3, String str4, String str5, ArrayList<GProIdentity> arrayList) {
this.instructionText = "";
this.noteText = "";
this.textChannelPreviewImg = "";
this.memberListPreviewImg = "";
this.sampleIdentityDesc = "";
this.identityList = new ArrayList<>();
this.instructionText = str;
this.noteText = str2;
this.textChannelPreviewImg = str3;
this.memberListPreviewImg = str4;
this.sampleIdentityDesc = str5;
this.identityList = arrayList;
}
}
| 2,119 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGlobalPrivacySwitchGroup.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGlobalPrivacySwitchGroup.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProGlobalPrivacySwitchGroup {
int addFriendSwitch;
int allSwitch;
int joinedGuildShowSwitch;
int publishedFeedShowSwitch;
int qqProfileShowSwitch;
int roomStateShowSwitch;
public GProGlobalPrivacySwitchGroup() {
}
public int getAddFriendSwitch() {
return this.addFriendSwitch;
}
public int getAllSwitch() {
return this.allSwitch;
}
public int getJoinedGuildShowSwitch() {
return this.joinedGuildShowSwitch;
}
public int getPublishedFeedShowSwitch() {
return this.publishedFeedShowSwitch;
}
public int getQqProfileShowSwitch() {
return this.qqProfileShowSwitch;
}
public int getRoomStateShowSwitch() {
return this.roomStateShowSwitch;
}
public String toString() {
return "GProGlobalPrivacySwitchGroup{addFriendSwitch=" + this.addFriendSwitch + ",allSwitch=" + this.allSwitch + ",qqProfileShowSwitch=" + this.qqProfileShowSwitch + ",roomStateShowSwitch=" + this.roomStateShowSwitch + ",joinedGuildShowSwitch=" + this.joinedGuildShowSwitch + ",publishedFeedShowSwitch=" + this.publishedFeedShowSwitch + ",}";
}
public GProGlobalPrivacySwitchGroup(int i2, int i3, int i4, int i5, int i6, int i7) {
this.addFriendSwitch = i2;
this.allSwitch = i3;
this.qqProfileShowSwitch = i4;
this.roomStateShowSwitch = i5;
this.joinedGuildShowSwitch = i6;
this.publishedFeedShowSwitch = i7;
}
}
| 1,587 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRetentionChannelInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRetentionChannelInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProRetentionChannelInfo implements Serializable {
String guildCover;
String guildIcon;
long guildId;
String guildName;
String guildProfile;
String joinSig;
long serialVersionUID;
ArrayList<GProRetentionChannelLabel> tagList;
public GProRetentionChannelInfo() {
this.serialVersionUID = 1L;
this.guildName = "";
this.guildIcon = "";
this.guildProfile = "";
this.guildCover = "";
this.joinSig = "";
this.tagList = new ArrayList<>();
}
public String getGuildCover() {
return this.guildCover;
}
public String getGuildIcon() {
return this.guildIcon;
}
public long getGuildId() {
return this.guildId;
}
public String getGuildName() {
return this.guildName;
}
public String getGuildProfile() {
return this.guildProfile;
}
public String getJoinSig() {
return this.joinSig;
}
public ArrayList<GProRetentionChannelLabel> getTagList() {
return this.tagList;
}
public String toString() {
return "GProRetentionChannelInfo{guildId=" + this.guildId + ",guildName=" + this.guildName + ",guildIcon=" + this.guildIcon + ",guildProfile=" + this.guildProfile + ",guildCover=" + this.guildCover + ",joinSig=" + this.joinSig + ",tagList=" + this.tagList + ",}";
}
public GProRetentionChannelInfo(long j2, String str, String str2, String str3, String str4, String str5, ArrayList<GProRetentionChannelLabel> arrayList) {
this.serialVersionUID = 1L;
this.guildName = "";
this.guildIcon = "";
this.guildProfile = "";
this.guildCover = "";
this.joinSig = "";
this.tagList = new ArrayList<>();
this.guildId = j2;
this.guildName = str;
this.guildIcon = str2;
this.guildProfile = str3;
this.guildCover = str4;
this.joinSig = str5;
this.tagList = arrayList;
}
}
| 2,144 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchFileItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchFileItem.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchFileItem {
ArrayList<SearchBuddyChatInfo> buddyChatInfo;
int chatType;
ArrayList<SearchDataLineChatInfo> dataLineChatInfo;
ArrayList<SearchDiscussChatInfo> discussChatInfo;
long elemId;
int elemType;
String fileName;
String filePath;
long fileSize;
ArrayList<SearchGroupChatInfo> groupChatInfo;
ArrayList<SearchHitInfo> hits;
long msgId;
long msgSeq;
long msgTime;
String senderCard;
String senderNick;
String senderRemark;
String senderUid;
ArrayList<TempChatGameSession> tmpChatInfo;
public SearchFileItem() {
this.buddyChatInfo = new ArrayList<>();
this.discussChatInfo = new ArrayList<>();
this.groupChatInfo = new ArrayList<>();
this.dataLineChatInfo = new ArrayList<>();
this.tmpChatInfo = new ArrayList<>();
this.senderUid = "";
this.senderNick = "";
this.senderRemark = "";
this.senderCard = "";
this.filePath = "";
this.fileName = "";
this.hits = new ArrayList<>();
}
public ArrayList<SearchBuddyChatInfo> getBuddyChatInfo() {
return this.buddyChatInfo;
}
public int getChatType() {
return this.chatType;
}
public ArrayList<SearchDataLineChatInfo> getDataLineChatInfo() {
return this.dataLineChatInfo;
}
public ArrayList<SearchDiscussChatInfo> getDiscussChatInfo() {
return this.discussChatInfo;
}
public long getElemId() {
return this.elemId;
}
public int getElemType() {
return this.elemType;
}
public String getFileName() {
return this.fileName;
}
public String getFilePath() {
return this.filePath;
}
public long getFileSize() {
return this.fileSize;
}
public ArrayList<SearchGroupChatInfo> getGroupChatInfo() {
return this.groupChatInfo;
}
public ArrayList<SearchHitInfo> getHits() {
return this.hits;
}
public long getMsgId() {
return this.msgId;
}
public long getMsgSeq() {
return this.msgSeq;
}
public long getMsgTime() {
return this.msgTime;
}
public String getSenderCard() {
return this.senderCard;
}
public String getSenderNick() {
return this.senderNick;
}
public String getSenderRemark() {
return this.senderRemark;
}
public String getSenderUid() {
return this.senderUid;
}
public ArrayList<TempChatGameSession> getTmpChatInfo() {
return this.tmpChatInfo;
}
public String toString() {
return "SearchFileItem{chatType=" + this.chatType + ",buddyChatInfo=" + this.buddyChatInfo + ",discussChatInfo=" + this.discussChatInfo + ",groupChatInfo=" + this.groupChatInfo + ",dataLineChatInfo=" + this.dataLineChatInfo + ",tmpChatInfo=" + this.tmpChatInfo + ",msgId=" + this.msgId + ",msgSeq=" + this.msgSeq + ",msgTime=" + this.msgTime + ",senderUid=" + this.senderUid + ",senderNick=" + this.senderNick + ",senderRemark=" + this.senderRemark + ",senderCard=" + this.senderCard + ",elemId=" + this.elemId + ",elemType=" + this.elemType + ",fileSize=" + this.fileSize + ",filePath=" + this.filePath + ",fileName=" + this.fileName + ",hits=" + this.hits + ",}";
}
public SearchFileItem(int i2, ArrayList<SearchBuddyChatInfo> arrayList, ArrayList<SearchDiscussChatInfo> arrayList2, ArrayList<SearchGroupChatInfo> arrayList3, ArrayList<SearchDataLineChatInfo> arrayList4, ArrayList<TempChatGameSession> arrayList5, long j2, long j3, long j4, String str, String str2, String str3, String str4, long j5, int i3, long j6, String str5, String str6, ArrayList<SearchHitInfo> arrayList6) {
this.buddyChatInfo = new ArrayList<>();
this.discussChatInfo = new ArrayList<>();
this.groupChatInfo = new ArrayList<>();
this.dataLineChatInfo = new ArrayList<>();
this.tmpChatInfo = new ArrayList<>();
this.senderUid = "";
this.senderNick = "";
this.senderRemark = "";
this.senderCard = "";
this.filePath = "";
this.fileName = "";
this.hits = new ArrayList<>();
this.chatType = i2;
this.buddyChatInfo = arrayList;
this.discussChatInfo = arrayList2;
this.groupChatInfo = arrayList3;
this.dataLineChatInfo = arrayList4;
this.tmpChatInfo = arrayList5;
this.msgId = j2;
this.msgSeq = j3;
this.msgTime = j4;
this.senderUid = str;
this.senderNick = str2;
this.senderRemark = str3;
this.senderCard = str4;
this.elemId = j5;
this.elemType = i3;
this.fileSize = j6;
this.filePath = str5;
this.fileName = str6;
this.hits = arrayList6;
}
}
| 4,959 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
RoleGroupInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/RoleGroupInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class RoleGroupInfo {
int color;
String name;
long roleId;
public RoleGroupInfo() {
this.name = "";
}
public int getColor() {
return this.color;
}
public String getName() {
return this.name;
}
public long getRoleId() {
return this.roleId;
}
public String toString() {
return "RoleGroupInfo{roleId=" + this.roleId + ",name=" + this.name + ",color=" + this.color + ",}";
}
public RoleGroupInfo(long j2, String str, int i2) {
this.name = "";
this.roleId = j2;
this.name = str;
this.color = i2;
}
}
| 751 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProEndPageLiveTime.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProEndPageLiveTime.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProEndPageLiveTime {
long endTime;
long startTime;
long timeLong;
public GProEndPageLiveTime() {
}
public long getEndTime() {
return this.endTime;
}
public long getStartTime() {
return this.startTime;
}
public long getTimeLong() {
return this.timeLong;
}
public String toString() {
return "GProEndPageLiveTime{startTime=" + this.startTime + ",endTime=" + this.endTime + ",timeLong=" + this.timeLong + ",}";
}
public GProEndPageLiveTime(long j2, long j3, long j4) {
this.startTime = j2;
this.endTime = j3;
this.timeLong = j4;
}
}
| 753 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
IBatchGroupFileCountCallback.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IBatchGroupFileCountCallback.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
public interface IBatchGroupFileCountCallback {
void onResult(int i2, String str, ArrayList<Long> arrayList, ArrayList<Integer> arrayList2);
} | 225 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProKVNode.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProKVNode.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProKVNode implements Serializable {
String key;
long serialVersionUID;
byte[] value;
public GProKVNode() {
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 "GProKVNode{key=" + this.key + ",value=" + this.value + ",}";
}
public GProKVNode(String str, byte[] bArr) {
this.serialVersionUID = 1L;
this.key = "";
this.value = new byte[0];
this.key = str;
this.value = bArr;
}
}
| 798 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProStickyTextChannel.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProStickyTextChannel.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProStickyTextChannel implements Serializable {
String activeMemberCount;
ArrayList<GProUser> activeMemberList;
ArrayList<MsgAbstract> msgAbstracts;
ArrayList<GProMsgSummary> msgList;
long serialVersionUID;
public GProStickyTextChannel() {
this.serialVersionUID = 1L;
this.activeMemberCount = "";
this.msgList = new ArrayList<>();
this.msgAbstracts = new ArrayList<>();
this.activeMemberList = new ArrayList<>();
}
public String getActiveMemberCount() {
return this.activeMemberCount;
}
public ArrayList<GProUser> getActiveMemberList() {
return this.activeMemberList;
}
public ArrayList<MsgAbstract> getMsgAbstracts() {
return this.msgAbstracts;
}
public ArrayList<GProMsgSummary> getMsgList() {
return this.msgList;
}
public String toString() {
return "GProStickyTextChannel{activeMemberCount=" + this.activeMemberCount + ",msgList=" + this.msgList + ",msgAbstracts=" + this.msgAbstracts + ",activeMemberList=" + this.activeMemberList + ",}";
}
public GProStickyTextChannel(String str, ArrayList<GProMsgSummary> arrayList, ArrayList<MsgAbstract> arrayList2, ArrayList<GProUser> arrayList3) {
this.serialVersionUID = 1L;
this.activeMemberCount = "";
this.msgList = new ArrayList<>();
this.msgAbstracts = new ArrayList<>();
this.activeMemberList = new ArrayList<>();
this.activeMemberCount = str;
this.msgList = arrayList;
this.msgAbstracts = arrayList2;
this.activeMemberList = arrayList3;
}
}
| 1,788 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
FileReceiptElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/FileReceiptElement.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
public final class FileReceiptElement implements Serializable {
String fileName;
long serialVersionUID;
public FileReceiptElement() {
this.serialVersionUID = 1L;
this.fileName = "";
}
public String getFileName() {
return this.fileName;
}
public String toString() {
return "FileReceiptElement{fileName=" + this.fileName + ",}";
}
public FileReceiptElement(String str) {
this.serialVersionUID = 1L;
this.fileName = "";
this.fileName = str;
}
} | 621 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProHeartbeatReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProHeartbeatReq.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProHeartbeatReq implements Serializable {
String authMeta;
long channelDataVersion;
long channelId;
int channelType;
long guildId;
ArrayList<GProKVNode> kvInfoList;
ArrayList<String> roomIdList;
long serialVersionUID;
int streamType;
GProUserDevState userDevState;
public GProHeartbeatReq() {
this.serialVersionUID = 1L;
this.authMeta = "";
this.roomIdList = new ArrayList<>();
this.userDevState = new GProUserDevState();
this.kvInfoList = new ArrayList<>();
}
public String getAuthMeta() {
return this.authMeta;
}
public long getChannelDataVersion() {
return this.channelDataVersion;
}
public long getChannelId() {
return this.channelId;
}
public int getChannelType() {
return this.channelType;
}
public long getGuildId() {
return this.guildId;
}
public ArrayList<GProKVNode> getKvInfoList() {
return this.kvInfoList;
}
public ArrayList<String> getRoomIdList() {
return this.roomIdList;
}
public int getStreamType() {
return this.streamType;
}
public GProUserDevState getUserDevState() {
return this.userDevState;
}
public String toString() {
return "GProHeartbeatReq{guildId=" + this.guildId + ",channelId=" + this.channelId + ",authMeta=" + this.authMeta + ",roomIdList=" + this.roomIdList + ",streamType=" + this.streamType + ",userDevState=" + this.userDevState + ",kvInfoList=" + this.kvInfoList + ",channelType=" + this.channelType + ",channelDataVersion=" + this.channelDataVersion + ",}";
}
public GProHeartbeatReq(long j2, long j3, String str, ArrayList<String> arrayList, int i2, GProUserDevState gProUserDevState, ArrayList<GProKVNode> arrayList2, int i3, long j4) {
this.serialVersionUID = 1L;
this.authMeta = "";
this.roomIdList = new ArrayList<>();
this.userDevState = new GProUserDevState();
this.kvInfoList = new ArrayList<>();
this.guildId = j2;
this.channelId = j3;
this.authMeta = str;
this.roomIdList = arrayList;
this.streamType = i2;
this.userDevState = gProUserDevState;
this.kvInfoList = arrayList2;
this.channelType = i3;
this.channelDataVersion = j4;
}
}
| 2,522 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
Image.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/Image.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class Image {
byte[] busiData;
int displayIndex;
int height;
String imageMD5;
String layerPicUrl;
String patternId;
String picId;
String picUrl;
ArrayList<ImageUrl> vecImageUrl;
int width;
public Image() {
this.picUrl = "";
this.picId = "";
this.patternId = "";
}
public byte[] getBusiData() {
return this.busiData;
}
public int getDisplayIndex() {
return this.displayIndex;
}
public int getHeight() {
return this.height;
}
public String getImageMD5() {
return this.imageMD5;
}
public String getLayerPicUrl() {
return this.layerPicUrl;
}
public String getPatternId() {
return this.patternId;
}
public String getPicId() {
return this.picId;
}
public String getPicUrl() {
return this.picUrl;
}
public ArrayList<ImageUrl> getVecImageUrl() {
return this.vecImageUrl;
}
public int getWidth() {
return this.width;
}
public String toString() {
return "Image{width=" + this.width + ",height=" + this.height + ",picUrl=" + this.picUrl + ",vecImageUrl=" + this.vecImageUrl + ",picId=" + this.picId + ",busiData=" + this.busiData + ",imageMD5=" + this.imageMD5 + ",layerPicUrl=" + this.layerPicUrl + ",patternId=" + this.patternId + ",displayIndex=" + this.displayIndex + ",}";
}
public Image(int i2, int i3, String str, ArrayList<ImageUrl> arrayList, String str2, byte[] bArr, String str3, String str4, String str5, int i4) {
this.picUrl = "";
this.picId = "";
this.patternId = "";
this.width = i2;
this.height = i3;
this.picUrl = str;
this.vecImageUrl = arrayList;
this.picId = str2;
this.busiData = bArr;
this.imageMD5 = str3;
this.layerPicUrl = str4;
this.patternId = str5;
this.displayIndex = i4;
}
}
| 2,115 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAnchorMediaInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAnchorMediaInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProAnchorMediaInfo {
String serverPart;
String sig;
String streamParam;
Long timeout;
Long type;
public GProAnchorMediaInfo() {
}
public String getServerPart() {
return this.serverPart;
}
public String getSig() {
return this.sig;
}
public String getStreamParam() {
return this.streamParam;
}
public Long getTimeout() {
return this.timeout;
}
public Long getType() {
return this.type;
}
public String toString() {
return "GProAnchorMediaInfo{sig=" + this.sig + ",timeout=" + this.timeout + ",type=" + this.type + ",serverPart=" + this.serverPart + ",streamParam=" + this.streamParam + ",}";
}
public GProAnchorMediaInfo(String str, Long l2, Long l3, String str2, String str3) {
this.sig = str;
this.timeout = l2;
this.type = l3;
this.serverPart = str2;
this.streamParam = str3;
}
}
| 1,063 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchGroup.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchGroup.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchGroup {
int groupNum;
String keyWords;
String platform;
int pos;
Integer version;
public SearchGroup() {
}
public int getGroupNum() {
return this.groupNum;
}
public String getKeyWords() {
return this.keyWords;
}
public String getPlatform() {
return this.platform;
}
public int getPos() {
return this.pos;
}
public Integer getVersion() {
return this.version;
}
public String toString() {
return "SearchGroup{keyWords=" + this.keyWords + ", version = " + this.version + ",platform=" + this.platform + ",groupNum=" + this.groupNum + ",pos=" + this.pos + ",}";
}
public SearchGroup(String str, Integer num, String str2, int i2, int i3) {
this.keyWords = str;
this.version = num;
this.platform = str2;
this.groupNum = i2;
this.pos = i3;
}
}
| 1,045 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProCreateLobbyReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProCreateLobbyReq.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProCreateLobbyReq {
String appId;
int capacity;
long channelId;
ArrayList<GProKVPair> extendDic;
long guildId;
int lobbyType;
public GProCreateLobbyReq() {
this.appId = "";
this.extendDic = new ArrayList<>();
}
public String getAppId() {
return this.appId;
}
public int getCapacity() {
return this.capacity;
}
public long getChannelId() {
return this.channelId;
}
public ArrayList<GProKVPair> getExtendDic() {
return this.extendDic;
}
public long getGuildId() {
return this.guildId;
}
public int getLobbyType() {
return this.lobbyType;
}
public String toString() {
return "GProCreateLobbyReq{appId=" + this.appId + ",guildId=" + this.guildId + ",channelId=" + this.channelId + ",lobbyType=" + this.lobbyType + ",capacity=" + this.capacity + ",extendDic=" + this.extendDic + ",}";
}
public GProCreateLobbyReq(String str, long j2, long j3, int i2, int i3, ArrayList<GProKVPair> arrayList) {
this.appId = "";
this.extendDic = new ArrayList<>();
this.appId = str;
this.guildId = j2;
this.channelId = j3;
this.lobbyType = i2;
this.capacity = i3;
this.extendDic = arrayList;
}
}
| 1,445 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProClientInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProClientInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProClientInfo {
int clientId;
String clientName;
GProIdentityInstruction identityInstruction;
public GProClientInfo() {
this.clientName = "";
this.identityInstruction = new GProIdentityInstruction();
}
public int getClientId() {
return this.clientId;
}
public String getClientName() {
return this.clientName;
}
public GProIdentityInstruction getIdentityInstruction() {
return this.identityInstruction;
}
public String toString() {
return "GProClientInfo{clientId=" + this.clientId + ",clientName=" + this.clientName + ",identityInstruction=" + this.identityInstruction + ",}";
}
public GProClientInfo(int i2, String str, GProIdentityInstruction gProIdentityInstruction) {
this.clientName = "";
this.identityInstruction = new GProIdentityInstruction();
this.clientId = i2;
this.clientName = str;
this.identityInstruction = gProIdentityInstruction;
}
}
| 1,107 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
IQQNTWrapperNetworkListener.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IQQNTWrapperNetworkListener.java | package com.tencent.qqnt.kernel.nativeinterface;
public interface IQQNTWrapperNetworkListener {
void onNetworkStatusChanged(NetStatusType o, NetStatusType n);
} | 166 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProVoiceSmobaGameGameStaticInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProVoiceSmobaGameGameStaticInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProVoiceSmobaGameGameStaticInfo implements Serializable {
String coverUrl;
String gameMode;
String gameName;
ArrayList<String> gradeNames;
String iconUrl;
long maxNum;
long serialVersionUID;
public GProVoiceSmobaGameGameStaticInfo() {
this.serialVersionUID = 1L;
this.gameName = "";
this.gameMode = "";
this.iconUrl = "";
this.coverUrl = "";
this.gradeNames = new ArrayList<>();
}
public String getCoverUrl() {
return this.coverUrl;
}
public String getGameMode() {
return this.gameMode;
}
public String getGameName() {
return this.gameName;
}
public ArrayList<String> getGradeNames() {
return this.gradeNames;
}
public String getIconUrl() {
return this.iconUrl;
}
public long getMaxNum() {
return this.maxNum;
}
public String toString() {
return "GProVoiceSmobaGameGameStaticInfo{gameName=" + this.gameName + ",gameMode=" + this.gameMode + ",iconUrl=" + this.iconUrl + ",coverUrl=" + this.coverUrl + ",maxNum=" + this.maxNum + ",gradeNames=" + this.gradeNames + ",}";
}
public GProVoiceSmobaGameGameStaticInfo(String str, String str2, String str3, String str4, long j2, ArrayList<String> arrayList) {
this.serialVersionUID = 1L;
this.gameName = "";
this.gameMode = "";
this.iconUrl = "";
this.coverUrl = "";
this.gradeNames = new ArrayList<>();
this.gameName = str;
this.gameMode = str2;
this.iconUrl = str3;
this.coverUrl = str4;
this.maxNum = j2;
this.gradeNames = arrayList;
}
}
| 1,851 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAVRoomOptPushInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAVRoomOptPushInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProAVRoomOptPushInfo {
long channelId;
String delRoomId;
long guildId;
int optType;
GProAVRoomAddUpInfo roomAddUpInfo;
GProAVShowMsgInfo showInfo;
String switchRoomId;
public GProAVRoomOptPushInfo() {
this.showInfo = new GProAVShowMsgInfo();
this.roomAddUpInfo = new GProAVRoomAddUpInfo();
this.delRoomId = "";
this.switchRoomId = "";
}
public long getChannelId() {
return this.channelId;
}
public String getDelRoomId() {
return this.delRoomId;
}
public long getGuildId() {
return this.guildId;
}
public int getOptType() {
return this.optType;
}
public GProAVRoomAddUpInfo getRoomAddUpInfo() {
return this.roomAddUpInfo;
}
public GProAVShowMsgInfo getShowInfo() {
return this.showInfo;
}
public String getSwitchRoomId() {
return this.switchRoomId;
}
public String toString() {
return "GProAVRoomOptPushInfo{optType=" + this.optType + ",guildId=" + this.guildId + ",channelId=" + this.channelId + ",showInfo=" + this.showInfo + ",roomAddUpInfo=" + this.roomAddUpInfo + ",delRoomId=" + this.delRoomId + ",switchRoomId=" + this.switchRoomId + ",}";
}
public GProAVRoomOptPushInfo(int i2, long j2, long j3, GProAVShowMsgInfo gProAVShowMsgInfo, GProAVRoomAddUpInfo gProAVRoomAddUpInfo, String str, String str2) {
this.showInfo = new GProAVShowMsgInfo();
this.roomAddUpInfo = new GProAVRoomAddUpInfo();
this.delRoomId = "";
this.switchRoomId = "";
this.optType = i2;
this.guildId = j2;
this.channelId = j3;
this.showInfo = gProAVShowMsgInfo;
this.roomAddUpInfo = gProAVRoomAddUpInfo;
this.delRoomId = str;
this.switchRoomId = str2;
}
}
| 1,934 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProMsgSearchRsp.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProMsgSearchRsp.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProMsgSearchRsp {
String cookie;
GProDocHit docHit;
boolean hasMore;
ArrayList<GProGuildMsg> results;
public GProMsgSearchRsp() {
this.results = new ArrayList<>();
this.cookie = "";
this.docHit = new GProDocHit();
}
public String getCookie() {
return this.cookie;
}
public GProDocHit getDocHit() {
return this.docHit;
}
public boolean getHasMore() {
return this.hasMore;
}
public ArrayList<GProGuildMsg> getResults() {
return this.results;
}
public String toString() {
return "GProMsgSearchRsp{results=" + this.results + ",cookie=" + this.cookie + ",hasMore=" + this.hasMore + ",docHit=" + this.docHit + ",}";
}
public GProMsgSearchRsp(ArrayList<GProGuildMsg> arrayList, String str, boolean z, GProDocHit gProDocHit) {
this.results = new ArrayList<>();
this.cookie = "";
this.docHit = new GProDocHit();
this.results = arrayList;
this.cookie = str;
this.hasMore = z;
this.docHit = gProDocHit;
}
}
| 1,226 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProSpeakTimeCtl.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProSpeakTimeCtl.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProSpeakTimeCtl implements Serializable {
int queueSpeakS;
long serialVersionUID = 1;
long startSpeakMs;
long stopSpeakMs;
public GProSpeakTimeCtl() {
}
public int getQueueSpeakS() {
return this.queueSpeakS;
}
public long getStartSpeakMs() {
return this.startSpeakMs;
}
public long getStopSpeakMs() {
return this.stopSpeakMs;
}
public String toString() {
return "GProSpeakTimeCtl{startSpeakMs=" + this.startSpeakMs + ",stopSpeakMs=" + this.stopSpeakMs + ",queueSpeakS=" + this.queueSpeakS + ",}";
}
public GProSpeakTimeCtl(long j2, long j3, int i2) {
this.startSpeakMs = j2;
this.stopSpeakMs = j3;
this.queueSpeakS = i2;
}
}
| 883 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRolePermission.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRolePermission.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProRolePermission {
boolean hasRolePermission;
ArrayList<GProPermissionInfo> permissionList;
public GProRolePermission() {
this.permissionList = new ArrayList<>();
}
public boolean getHasRolePermission() {
return this.hasRolePermission;
}
public ArrayList<GProPermissionInfo> getPermissionList() {
return this.permissionList;
}
public String toString() {
return "GProRolePermission{hasRolePermission=" + this.hasRolePermission + ",permissionList=" + this.permissionList + ",}";
}
public GProRolePermission(boolean z, ArrayList<GProPermissionInfo> arrayList) {
this.permissionList = new ArrayList<>();
this.hasRolePermission = z;
this.permissionList = arrayList;
}
}
| 906 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
MsgRecord.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/MsgRecord.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
import java.util.HashMap;
public class MsgRecord {
AnonymousExtInfo anonymousExtInfo;
int atType;
int avatarFlag;
String avatarMeta;
String avatarPendant;
int categoryManage;
String channelId;
String channelName;
int chatType;
GProClientIdentity clientIdentityInfo;
long clientSeq;
long cntSeq;
long commentCnt;
int directMsgFlag;
ArrayList<DirectMsgMember> directMsgMembers;
boolean editable;
ArrayList<MsgElement> elements;
ArrayList<MsgEmojiLikes> emojiLikesList;
byte[] extInfoForUI;
String feedId;
Integer fileGroupSize;
FoldingInfo foldingInfo;
FreqLimitInfo freqLimitInfo;
long fromAppid;
FromRoleInfo fromChannelRoleInfo;
FromRoleInfo fromGuildRoleInfo;
long fromUid;
byte[] generalFlags;
long guildCode;
String guildId;
String guildName;
boolean isImportMsg;
boolean isOnlineMsg;
FromRoleInfo levelRoleInfo;
HashMap<Integer, MsgAttributeInfo> msgAttrs;
long msgId;
byte[] msgMeta;
long msgRandom;
long msgSeq;
long msgTime;
int msgType;
MultiTransInfo multiTransInfo;
int nameType;
String peerName;
String peerUid;
long peerUin;
GProMedal personalMedal;
long recallTime;
ArrayList<MsgRecord> records;
long roleId;
int roleType;
String sendMemberName;
String sendNickName;
String sendRemarkName;
int sendStatus;
int sendType;
String senderUid;
long senderUin;
int subMsgType;
long timeStamp;
public MsgRecord() {
this.senderUid = "";
this.peerUid = "";
this.channelId = "";
this.guildId = "";
this.msgMeta = new byte[0];
this.sendRemarkName = "";
this.sendMemberName = "";
this.sendNickName = "";
this.guildName = "";
this.channelName = "";
this.elements = new ArrayList<>();
this.records = new ArrayList<>();
this.emojiLikesList = new ArrayList<>();
this.directMsgMembers = new ArrayList<>();
this.peerName = "";
this.avatarMeta = "";
this.avatarPendant = "";
this.feedId = "";
this.fromChannelRoleInfo = new FromRoleInfo();
this.fromGuildRoleInfo = new FromRoleInfo();
this.levelRoleInfo = new FromRoleInfo();
this.generalFlags = new byte[0];
this.msgAttrs = new HashMap<>();
}
public AnonymousExtInfo getAnonymousExtInfo() {
return this.anonymousExtInfo;
}
public int getAtType() {
return this.atType;
}
public int getAvatarFlag() {
return this.avatarFlag;
}
public String getAvatarMeta() {
return this.avatarMeta;
}
public String getAvatarPendant() {
return this.avatarPendant;
}
public int getCategoryManage() {
return this.categoryManage;
}
public String getChannelId() {
return this.channelId;
}
public String getChannelName() {
return this.channelName;
}
public int getChatType() {
return this.chatType;
}
public GProClientIdentity getClientIdentityInfo() {
return this.clientIdentityInfo;
}
public long getClientSeq() {
return this.clientSeq;
}
public long getCntSeq() {
return this.cntSeq;
}
public long getCommentCnt() {
return this.commentCnt;
}
public int getDirectMsgFlag() {
return this.directMsgFlag;
}
public ArrayList<DirectMsgMember> getDirectMsgMembers() {
return this.directMsgMembers;
}
public boolean getEditable() {
return this.editable;
}
public ArrayList<MsgElement> getElements() {
return this.elements;
}
public ArrayList<MsgEmojiLikes> getEmojiLikesList() {
return this.emojiLikesList;
}
public byte[] getExtInfoForUI() {
return this.extInfoForUI;
}
public String getFeedId() {
return this.feedId;
}
public Integer getFileGroupSize() {
return this.fileGroupSize;
}
public FoldingInfo getFoldingInfo() {
return this.foldingInfo;
}
public FreqLimitInfo getFreqLimitInfo() {
return this.freqLimitInfo;
}
public long getFromAppid() {
return this.fromAppid;
}
public FromRoleInfo getFromChannelRoleInfo() {
return this.fromChannelRoleInfo;
}
public FromRoleInfo getFromGuildRoleInfo() {
return this.fromGuildRoleInfo;
}
public long getFromUid() {
return this.fromUid;
}
public byte[] getGeneralFlags() {
return this.generalFlags;
}
public long getGuildCode() {
return this.guildCode;
}
public String getGuildId() {
return this.guildId;
}
public String getGuildName() {
return this.guildName;
}
public boolean getIsImportMsg() {
return this.isImportMsg;
}
public boolean getIsOnlineMsg() {
return this.isOnlineMsg;
}
public FromRoleInfo getLevelRoleInfo() {
return this.levelRoleInfo;
}
public HashMap<Integer, MsgAttributeInfo> getMsgAttrs() {
return this.msgAttrs;
}
public long getMsgId() {
return this.msgId;
}
public byte[] getMsgMeta() {
return this.msgMeta;
}
public long getMsgRandom() {
return this.msgRandom;
}
public long getMsgSeq() {
return this.msgSeq;
}
public long getMsgTime() {
return this.msgTime;
}
public int getMsgType() {
return this.msgType;
}
public MultiTransInfo getMultiTransInfo() {
return this.multiTransInfo;
}
public int getNameType() {
return this.nameType;
}
public String getPeerName() {
return this.peerName;
}
public String getPeerUid() {
return this.peerUid;
}
public long getPeerUin() {
return this.peerUin;
}
public GProMedal getPersonalMedal() {
return this.personalMedal;
}
public long getRecallTime() {
return this.recallTime;
}
public ArrayList<MsgRecord> getRecords() {
return this.records;
}
public long getRoleId() {
return this.roleId;
}
public int getRoleType() {
return this.roleType;
}
public String getSendMemberName() {
return this.sendMemberName;
}
public String getSendNickName() {
return this.sendNickName;
}
public String getSendRemarkName() {
return this.sendRemarkName;
}
public int getSendStatus() {
return this.sendStatus;
}
public int getSendType() {
return this.sendType;
}
public String getSenderUid() {
return this.senderUid;
}
public long getSenderUin() {
return this.senderUin;
}
public int getSubMsgType() {
return this.subMsgType;
}
public long getTimeStamp() {
return this.timeStamp;
}
public String toString() {
return "MsgRecord{msgId=" + this.msgId + ",msgRandom=" + this.msgRandom + ",msgSeq=" + this.msgSeq + ",cntSeq=" + this.cntSeq + ",chatType=" + this.chatType + ",msgType=" + this.msgType + ",subMsgType=" + this.subMsgType + ",sendType=" + this.sendType + ",senderUid=" + this.senderUid + ",peerUid=" + this.peerUid + ",channelId=" + this.channelId + ",guildId=" + this.guildId + ",guildCode=" + this.guildCode + ",fromUid=" + this.fromUid + ",fromAppid=" + this.fromAppid + ",msgTime=" + this.msgTime + ",msgMeta=" + this.msgMeta + ",sendStatus=" + this.sendStatus + ",sendRemarkName=" + this.sendRemarkName + ",sendMemberName=" + this.sendMemberName + ",sendNickName=" + this.sendNickName + ",guildName=" + this.guildName + ",channelName=" + this.channelName + ",elements=" + this.elements + ",records=" + this.records + ",emojiLikesList=" + this.emojiLikesList + ",commentCnt=" + this.commentCnt + ",directMsgFlag=" + this.directMsgFlag + ",directMsgMembers=" + this.directMsgMembers + ",peerName=" + this.peerName + ",freqLimitInfo=" + this.freqLimitInfo + ",editable=" + this.editable + ",avatarMeta=" + this.avatarMeta + ",avatarPendant=" + this.avatarPendant + ",feedId=" + this.feedId + ",roleId=" + this.roleId + ",timeStamp=" + this.timeStamp + ",clientIdentityInfo=" + this.clientIdentityInfo + ",isImportMsg=" + this.isImportMsg + ",atType=" + this.atType + ",roleType=" + this.roleType + ",fromChannelRoleInfo=" + this.fromChannelRoleInfo + ",fromGuildRoleInfo=" + this.fromGuildRoleInfo + ",levelRoleInfo=" + this.levelRoleInfo + ",recallTime=" + this.recallTime + ",isOnlineMsg=" + this.isOnlineMsg + ",generalFlags=" + this.generalFlags + ",clientSeq=" + this.clientSeq + ",fileGroupSize=" + this.fileGroupSize + ",foldingInfo=" + this.foldingInfo + ",multiTransInfo=" + this.multiTransInfo + ",senderUin=" + this.senderUin + ",peerUin=" + this.peerUin + ",msgAttrs=" + this.msgAttrs + ",anonymousExtInfo=" + this.anonymousExtInfo + ",nameType=" + this.nameType + ",avatarFlag=" + this.avatarFlag + ",extInfoForUI=" + this.extInfoForUI + ",personalMedal=" + this.personalMedal + ",categoryManage=" + this.categoryManage + ",}";
}
public MsgRecord(long j2, long j3, long j4, long j5, int i2, int i3, int i4, int i5, String str, String str2, String str3, String str4, long j6, long j7, long j8, long j9, byte[] bArr, int i6, String str5, String str6, String str7, String str8, String str9, ArrayList<MsgElement> arrayList, ArrayList<MsgRecord> arrayList2, ArrayList<MsgEmojiLikes> arrayList3, long j10, int i7, ArrayList<DirectMsgMember> arrayList4, String str10, FreqLimitInfo freqLimitInfo, boolean z, String str11, String str12, String str13, long j11, long j12, GProClientIdentity gProClientIdentity, boolean z2, int i8, int i9, FromRoleInfo fromRoleInfo, FromRoleInfo fromRoleInfo2, FromRoleInfo fromRoleInfo3, long j13, boolean z3, byte[] bArr2, long j14, Integer num, FoldingInfo foldingInfo, MultiTransInfo multiTransInfo, long j15, long j16, HashMap<Integer, MsgAttributeInfo> hashMap, AnonymousExtInfo anonymousExtInfo, int i10, int i11, byte[] bArr3, GProMedal gProMedal, int i12) {
this.senderUid = "";
this.peerUid = "";
this.channelId = "";
this.guildId = "";
this.msgMeta = new byte[0];
this.sendRemarkName = "";
this.sendMemberName = "";
this.sendNickName = "";
this.guildName = "";
this.channelName = "";
this.elements = new ArrayList<>();
this.records = new ArrayList<>();
this.emojiLikesList = new ArrayList<>();
this.directMsgMembers = new ArrayList<>();
this.peerName = "";
this.avatarMeta = "";
this.avatarPendant = "";
this.feedId = "";
this.fromChannelRoleInfo = new FromRoleInfo();
this.fromGuildRoleInfo = new FromRoleInfo();
this.levelRoleInfo = new FromRoleInfo();
this.generalFlags = new byte[0];
this.msgAttrs = new HashMap<>();
this.msgId = j2;
this.msgRandom = j3;
this.msgSeq = j4;
this.cntSeq = j5;
this.chatType = i2;
this.msgType = i3;
this.subMsgType = i4;
this.sendType = i5;
this.senderUid = str;
this.peerUid = str2;
this.channelId = str3;
this.guildId = str4;
this.guildCode = j6;
this.fromUid = j7;
this.fromAppid = j8;
this.msgTime = j9;
this.msgMeta = bArr;
this.sendStatus = i6;
this.sendRemarkName = str5;
this.sendMemberName = str6;
this.sendNickName = str7;
this.guildName = str8;
this.channelName = str9;
this.elements = arrayList;
this.records = arrayList2;
this.emojiLikesList = arrayList3;
this.commentCnt = j10;
this.directMsgFlag = i7;
this.directMsgMembers = arrayList4;
this.peerName = str10;
this.freqLimitInfo = freqLimitInfo;
this.editable = z;
this.avatarMeta = str11;
this.avatarPendant = str12;
this.feedId = str13;
this.roleId = j11;
this.timeStamp = j12;
this.clientIdentityInfo = gProClientIdentity;
this.isImportMsg = z2;
this.atType = i8;
this.roleType = i9;
this.fromChannelRoleInfo = fromRoleInfo;
this.fromGuildRoleInfo = fromRoleInfo2;
this.levelRoleInfo = fromRoleInfo3;
this.recallTime = j13;
this.isOnlineMsg = z3;
this.generalFlags = bArr2;
this.clientSeq = j14;
this.fileGroupSize = num;
this.foldingInfo = foldingInfo;
this.multiTransInfo = multiTransInfo;
this.senderUin = j15;
this.peerUin = j16;
this.msgAttrs = hashMap;
this.anonymousExtInfo = anonymousExtInfo;
this.nameType = i10;
this.avatarFlag = i11;
this.extInfoForUI = bArr3;
this.personalMedal = gProMedal;
this.categoryManage = i12;
}
}
| 13,125 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGetAudioBotStatusReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGetAudioBotStatusReq.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProGetAudioBotStatusReq {
ArrayList<Long> botIds;
long channelId;
long guildId;
public GProGetAudioBotStatusReq() {
this.botIds = new ArrayList<>();
}
public ArrayList<Long> getBotIds() {
return this.botIds;
}
public long getChannelId() {
return this.channelId;
}
public long getGuildId() {
return this.guildId;
}
public String toString() {
return "GProGetAudioBotStatusReq{guildId=" + this.guildId + ",channelId=" + this.channelId + ",botIds=" + this.botIds + ",}";
}
public GProGetAudioBotStatusReq(long j2, long j3, ArrayList<Long> arrayList) {
this.botIds = new ArrayList<>();
this.guildId = j2;
this.channelId = j3;
this.botIds = arrayList;
}
}
| 919 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAnchorEnterRoomRsp.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAnchorEnterRoomRsp.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProAnchorEnterRoomRsp {
ArrayList<GProAnchorTlv> exts;
GProAnchorMediaInfo media;
GProAnchorRoomInfo room;
GProAnchorTrtcInfo trtc;
GProAnchorUserInfo user;
public GProAnchorEnterRoomRsp() {
this.exts = new ArrayList<>();
}
public ArrayList<GProAnchorTlv> getExts() {
return this.exts;
}
public GProAnchorMediaInfo getMedia() {
return this.media;
}
public GProAnchorRoomInfo getRoom() {
return this.room;
}
public GProAnchorTrtcInfo getTrtc() {
return this.trtc;
}
public GProAnchorUserInfo getUser() {
return this.user;
}
public String toString() {
return "GProAnchorEnterRoomRsp{room=" + this.room + ",user=" + this.user + ",media=" + this.media + ",trtc=" + this.trtc + ",exts=" + this.exts + ",}";
}
public GProAnchorEnterRoomRsp(GProAnchorRoomInfo gProAnchorRoomInfo, GProAnchorUserInfo gProAnchorUserInfo, GProAnchorMediaInfo gProAnchorMediaInfo, GProAnchorTrtcInfo gProAnchorTrtcInfo, ArrayList<GProAnchorTlv> arrayList) {
this.exts = new ArrayList<>();
this.room = gProAnchorRoomInfo;
this.user = gProAnchorUserInfo;
this.media = gProAnchorMediaInfo;
this.trtc = gProAnchorTrtcInfo;
this.exts = arrayList;
}
}
| 1,445 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGuildRole.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGuildRole.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProGuildRole {
ArrayList<Long> approveSpeakChannels;
ArrayList<Long> approveVisibleChannels;
boolean bHoist;
long backgroudColor1;
long backgroudColor2;
long color;
int count;
String displayTagName;
int displayType;
long guildId;
boolean isChannelRole;
boolean isNotSort;
String levelBigIcon;
String levelDsc;
String levelIcon;
String levelSimpleDsc;
long levelSimpleDscColor;
long levelSplitLineColor;
ArrayList<Long> manageCategoryIdList;
long manageTagPendingColor;
int memberLimit;
String name;
int nameplate;
long outlineColor;
long roleId;
GProRolePermission rolePermissions;
int speakableChannelsCount;
int type;
int visibleChannelsCount;
public GProGuildRole() {
this.name = "";
this.approveSpeakChannels = new ArrayList<>();
this.approveVisibleChannels = new ArrayList<>();
this.rolePermissions = new GProRolePermission();
this.levelIcon = "";
this.levelDsc = "";
this.levelBigIcon = "";
this.levelSimpleDsc = "";
this.displayTagName = "";
this.manageCategoryIdList = new ArrayList<>();
}
public ArrayList<Long> getApproveSpeakChannels() {
return this.approveSpeakChannels;
}
public ArrayList<Long> getApproveVisibleChannels() {
return this.approveVisibleChannels;
}
public boolean getBHoist() {
return this.bHoist;
}
public long getBackgroudColor1() {
return this.backgroudColor1;
}
public long getBackgroudColor2() {
return this.backgroudColor2;
}
public long getColor() {
return this.color;
}
public int getCount() {
return this.count;
}
public String getDisplayTagName() {
return this.displayTagName;
}
public int getDisplayType() {
return this.displayType;
}
public long getGuildId() {
return this.guildId;
}
public boolean getIsChannelRole() {
return this.isChannelRole;
}
public boolean getIsNotSort() {
return this.isNotSort;
}
public String getLevelBigIcon() {
return this.levelBigIcon;
}
public String getLevelDsc() {
return this.levelDsc;
}
public String getLevelIcon() {
return this.levelIcon;
}
public String getLevelSimpleDsc() {
return this.levelSimpleDsc;
}
public long getLevelSimpleDscColor() {
return this.levelSimpleDscColor;
}
public long getLevelSplitLineColor() {
return this.levelSplitLineColor;
}
public ArrayList<Long> getManageCategoryIdList() {
return this.manageCategoryIdList;
}
public long getManageTagPendingColor() {
return this.manageTagPendingColor;
}
public int getMemberLimit() {
return this.memberLimit;
}
public String getName() {
return this.name;
}
public int getNameplate() {
return this.nameplate;
}
public long getOutlineColor() {
return this.outlineColor;
}
public long getRoleId() {
return this.roleId;
}
public GProRolePermission getRolePermissions() {
return this.rolePermissions;
}
public int getSpeakableChannelsCount() {
return this.speakableChannelsCount;
}
public int getType() {
return this.type;
}
public int getVisibleChannelsCount() {
return this.visibleChannelsCount;
}
public String toString() {
return "GProGuildRole{guildId=" + this.guildId + ",roleId=" + this.roleId + ",name=" + this.name + ",color=" + this.color + ",bHoist=" + this.bHoist + ",count=" + this.count + ",isNotSort=" + this.isNotSort + ",memberLimit=" + this.memberLimit + ",nameplate=" + this.nameplate + ",approveSpeakChannels=" + this.approveSpeakChannels + ",approveVisibleChannels=" + this.approveVisibleChannels + ",speakableChannelsCount=" + this.speakableChannelsCount + ",visibleChannelsCount=" + this.visibleChannelsCount + ",rolePermissions=" + this.rolePermissions + ",isChannelRole=" + this.isChannelRole + ",levelIcon=" + this.levelIcon + ",levelDsc=" + this.levelDsc + ",type=" + this.type + ",levelBigIcon=" + this.levelBigIcon + ",backgroudColor1=" + this.backgroudColor1 + ",backgroudColor2=" + this.backgroudColor2 + ",outlineColor=" + this.outlineColor + ",levelSimpleDsc=" + this.levelSimpleDsc + ",levelSimpleDscColor=" + this.levelSimpleDscColor + ",levelSplitLineColor=" + this.levelSplitLineColor + ",displayType=" + this.displayType + ",manageTagPendingColor=" + this.manageTagPendingColor + ",displayTagName=" + this.displayTagName + ",manageCategoryIdList=" + this.manageCategoryIdList + ",}";
}
public GProGuildRole(long j2, long j3, String str, long j4, boolean z, int i2, boolean z2, int i3, int i4, ArrayList<Long> arrayList, ArrayList<Long> arrayList2, int i5, int i6, GProRolePermission gProRolePermission, boolean z3, String str2, String str3, int i7, String str4, long j5, long j6, long j7, String str5, long j8, long j9, int i8, long j10, String str6, ArrayList<Long> arrayList3) {
this.name = "";
this.approveSpeakChannels = new ArrayList<>();
this.approveVisibleChannels = new ArrayList<>();
this.rolePermissions = new GProRolePermission();
this.levelIcon = "";
this.levelDsc = "";
this.levelBigIcon = "";
this.levelSimpleDsc = "";
this.displayTagName = "";
this.manageCategoryIdList = new ArrayList<>();
this.guildId = j2;
this.roleId = j3;
this.name = str;
this.color = j4;
this.bHoist = z;
this.count = i2;
this.isNotSort = z2;
this.memberLimit = i3;
this.nameplate = i4;
this.approveSpeakChannels = arrayList;
this.approveVisibleChannels = arrayList2;
this.speakableChannelsCount = i5;
this.visibleChannelsCount = i6;
this.rolePermissions = gProRolePermission;
this.isChannelRole = z3;
this.levelIcon = str2;
this.levelDsc = str3;
this.type = i7;
this.levelBigIcon = str4;
this.backgroudColor1 = j5;
this.backgroudColor2 = j6;
this.outlineColor = j7;
this.levelSimpleDsc = str5;
this.levelSimpleDscColor = j8;
this.levelSplitLineColor = j9;
this.displayType = i8;
this.manageTagPendingColor = j10;
this.displayTagName = str6;
this.manageCategoryIdList = arrayList3;
}
}
| 6,717 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProMyRecommendMsg.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProMyRecommendMsg.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProMyRecommendMsg implements Serializable {
int businessType;
GProDiscoverStatus discoverStatus;
int flag;
int pointType;
long serialVersionUID;
public GProMyRecommendMsg() {
this.serialVersionUID = 1L;
this.discoverStatus = new GProDiscoverStatus();
}
public int getBusinessType() {
return this.businessType;
}
public GProDiscoverStatus getDiscoverStatus() {
return this.discoverStatus;
}
public int getFlag() {
return this.flag;
}
public int getPointType() {
return this.pointType;
}
public String toString() {
return "GProMyRecommendMsg{flag=" + this.flag + ",businessType=" + this.businessType + ",discoverStatus=" + this.discoverStatus + ",pointType=" + this.pointType + ",}";
}
public GProMyRecommendMsg(int i2, int i3, GProDiscoverStatus gProDiscoverStatus, int i4) {
this.serialVersionUID = 1L;
this.discoverStatus = new GProDiscoverStatus();
this.flag = i2;
this.businessType = i3;
this.discoverStatus = gProDiscoverStatus;
this.pointType = i4;
}
}
| 1,277 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProBlockInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProBlockInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProBlockInfo implements Serializable {
String blockId;
int blockIndex;
String blockName;
int blockType;
ArrayList<GProRecommendCategory> categories;
boolean hasMore;
int isWhole;
ArrayList<GProRecommendItem> items;
long serialVersionUID;
public GProBlockInfo() {
this.serialVersionUID = 1L;
this.blockId = "";
this.blockName = "";
this.items = new ArrayList<>();
this.categories = new ArrayList<>();
}
public String getBlockId() {
return this.blockId;
}
public int getBlockIndex() {
return this.blockIndex;
}
public String getBlockName() {
return this.blockName;
}
public int getBlockType() {
return this.blockType;
}
public ArrayList<GProRecommendCategory> getCategories() {
return this.categories;
}
public boolean getHasMore() {
return this.hasMore;
}
public int getIsWhole() {
return this.isWhole;
}
public ArrayList<GProRecommendItem> getItems() {
return this.items;
}
public String toString() {
return "GProBlockInfo{blockId=" + this.blockId + ",blockType=" + this.blockType + ",blockIndex=" + this.blockIndex + ",blockName=" + this.blockName + ",items=" + this.items + ",hasMore=" + this.hasMore + ",categories=" + this.categories + ",isWhole=" + this.isWhole + ",}";
}
public GProBlockInfo(String str, int i2, int i3, String str2, ArrayList<GProRecommendItem> arrayList, boolean z, ArrayList<GProRecommendCategory> arrayList2, int i4) {
this.serialVersionUID = 1L;
this.blockId = "";
this.blockName = "";
this.items = new ArrayList<>();
this.categories = new ArrayList<>();
this.blockId = str;
this.blockType = i2;
this.blockIndex = i3;
this.blockName = str2;
this.items = arrayList;
this.hasMore = z;
this.categories = arrayList2;
this.isWhole = i4;
}
}
| 2,174 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupBulletinListResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupBulletinListResult.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class GroupBulletinListResult {
ArrayList<GroupBulletinFeed> feeds;
int gln;
long groupCode;
GroupBulletinGroupInfo groupInfo;
ArrayList<GroupBulletinFeed> inst;
long jointime;
int nextIndex;
ArrayList<GroupBulletinPublisherInfo> publisherInfos;
int readOnly;
int role;
long serverTime;
int srvCode;
long svrt;
int tst;
public GroupBulletinListResult() {
this.inst = new ArrayList<>();
this.feeds = new ArrayList<>();
this.groupInfo = new GroupBulletinGroupInfo();
this.publisherInfos = new ArrayList<>();
}
public ArrayList<GroupBulletinFeed> getFeeds() {
return this.feeds;
}
public int getGln() {
return this.gln;
}
public long getGroupCode() {
return this.groupCode;
}
public GroupBulletinGroupInfo getGroupInfo() {
return this.groupInfo;
}
public ArrayList<GroupBulletinFeed> getInst() {
return this.inst;
}
public long getJointime() {
return this.jointime;
}
public int getNextIndex() {
return this.nextIndex;
}
public ArrayList<GroupBulletinPublisherInfo> getPublisherInfos() {
return this.publisherInfos;
}
public int getReadOnly() {
return this.readOnly;
}
public int getRole() {
return this.role;
}
public long getServerTime() {
return this.serverTime;
}
public int getSrvCode() {
return this.srvCode;
}
public long getSvrt() {
return this.svrt;
}
public int getTst() {
return this.tst;
}
public String toString() {
return "GroupBulletinListResult{groupCode=" + this.groupCode + ",srvCode=" + this.srvCode + ",readOnly=" + this.readOnly + ",role=" + this.role + ",inst=" + this.inst + ",feeds=" + this.feeds + ",groupInfo=" + this.groupInfo + ",gln=" + this.gln + ",tst=" + this.tst + ",publisherInfos=" + this.publisherInfos + ",serverTime=" + this.serverTime + ",svrt=" + this.svrt + ",nextIndex=" + this.nextIndex + ",jointime=" + this.jointime + ",}";
}
public GroupBulletinListResult(long j2, int i2, int i3, int i4, ArrayList<GroupBulletinFeed> arrayList, ArrayList<GroupBulletinFeed> arrayList2, GroupBulletinGroupInfo groupBulletinGroupInfo, int i5, int i6, ArrayList<GroupBulletinPublisherInfo> arrayList3, long j3, long j4, int i7, long j5) {
this.inst = new ArrayList<>();
this.feeds = new ArrayList<>();
this.groupInfo = new GroupBulletinGroupInfo();
this.publisherInfos = new ArrayList<>();
this.groupCode = j2;
this.srvCode = i2;
this.readOnly = i3;
this.role = i4;
this.inst = arrayList;
this.feeds = arrayList2;
this.groupInfo = groupBulletinGroupInfo;
this.gln = i5;
this.tst = i6;
this.publisherInfos = arrayList3;
this.serverTime = j3;
this.svrt = j4;
this.nextIndex = i7;
this.jointime = j5;
}
} | 3,177 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProMsgSearchReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProMsgSearchReq.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProMsgSearchReq {
GProMsgSearchCond cond;
String cookie;
Integer count;
long guildId;
String query;
long tinyId;
Integer type;
public GProMsgSearchReq() {
this.cookie = "";
}
public GProMsgSearchCond getCond() {
return this.cond;
}
public String getCookie() {
return this.cookie;
}
public Integer getCount() {
return this.count;
}
public long getGuildId() {
return this.guildId;
}
public String getQuery() {
return this.query;
}
public long getTinyId() {
return this.tinyId;
}
public Integer getType() {
return this.type;
}
public String toString() {
return "GProMsgSearchReq{tinyId=" + this.tinyId + ",guildId=" + this.guildId + ",query=" + this.query + ",type=" + this.type + ",cond=" + this.cond + ",cookie=" + this.cookie + ",count=" + this.count + ",}";
}
public GProMsgSearchReq(long j2, long j3, String str, Integer num, GProMsgSearchCond gProMsgSearchCond, String str2, Integer num2) {
this.cookie = "";
this.tinyId = j2;
this.guildId = j3;
this.query = str;
this.type = num;
this.cond = gProMsgSearchCond;
this.cookie = str2;
this.count = num2;
}
}
| 1,414 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProQQMsgListGuild.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProQQMsgListGuild.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProQQMsgListGuild {
long avatarSeq;
long guildId;
String guildName;
long topTimestamp;
public GProQQMsgListGuild() {
this.guildName = "";
}
public long getAvatarSeq() {
return this.avatarSeq;
}
public long getGuildId() {
return this.guildId;
}
public String getGuildName() {
return this.guildName;
}
public long getTopTimestamp() {
return this.topTimestamp;
}
public String toString() {
return "GProQQMsgListGuild{guildId=" + this.guildId + ",topTimestamp=" + this.topTimestamp + ",guildName=" + this.guildName + ",avatarSeq=" + this.avatarSeq + ",}";
}
public GProQQMsgListGuild(long j2, long j3, String str, long j4) {
this.guildName = "";
this.guildId = j2;
this.topTimestamp = j3;
this.guildName = str;
this.avatarSeq = j4;
}
}
| 1,001 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProVoiceInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProVoiceInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProVoiceInfo implements Serializable {
String screenPic;
long screenShareTinyId;
int screenState;
long screenUpdateTime;
long serialVersionUID;
int voiceState;
public GProVoiceInfo() {
this.serialVersionUID = 1L;
this.screenPic = "";
}
public String getScreenPic() {
return this.screenPic;
}
public long getScreenShareTinyId() {
return this.screenShareTinyId;
}
public int getScreenState() {
return this.screenState;
}
public long getScreenUpdateTime() {
return this.screenUpdateTime;
}
public int getVoiceState() {
return this.voiceState;
}
public String toString() {
return "GProVoiceInfo{voiceState=" + this.voiceState + ",screenState=" + this.screenState + ",screenPic=" + this.screenPic + ",screenUpdateTime=" + this.screenUpdateTime + ",screenShareTinyId=" + this.screenShareTinyId + ",}";
}
public GProVoiceInfo(int i2, int i3, String str, long j2, long j3) {
this.serialVersionUID = 1L;
this.screenPic = "";
this.voiceState = i2;
this.screenState = i3;
this.screenPic = str;
this.screenUpdateTime = j2;
this.screenShareTinyId = j3;
}
}
| 1,392 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchGroupInfoItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchGroupInfoItem.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchGroupInfoItem {
long groupCode;
ArrayList<SearchHitInfo> groupCodeHits;
String groupName;
ArrayList<SearchHitInfo> groupNameHits;
boolean hasModifyConfGroupFace;
boolean hasModifyConfGroupName;
boolean isConf;
int memberCount;
String remarkName;
ArrayList<SearchHitInfo> remarkNameHits;
public SearchGroupInfoItem() {
this.groupCodeHits = new ArrayList<>();
this.groupName = "";
this.groupNameHits = new ArrayList<>();
this.remarkName = "";
this.remarkNameHits = new ArrayList<>();
}
public long getGroupCode() {
return this.groupCode;
}
public ArrayList<SearchHitInfo> getGroupCodeHits() {
return this.groupCodeHits;
}
public String getGroupName() {
return this.groupName;
}
public ArrayList<SearchHitInfo> getGroupNameHits() {
return this.groupNameHits;
}
public boolean getHasModifyConfGroupFace() {
return this.hasModifyConfGroupFace;
}
public boolean getHasModifyConfGroupName() {
return this.hasModifyConfGroupName;
}
public boolean getIsConf() {
return this.isConf;
}
public int getMemberCount() {
return this.memberCount;
}
public String getRemarkName() {
return this.remarkName;
}
public ArrayList<SearchHitInfo> getRemarkNameHits() {
return this.remarkNameHits;
}
public String toString() {
return "SearchGroupInfoItem{groupCode=" + this.groupCode + ",groupCodeHits=" + this.groupCodeHits + ",memberCount=" + this.memberCount + ",isConf=" + this.isConf + ",hasModifyConfGroupFace=" + this.hasModifyConfGroupFace + ",hasModifyConfGroupName=" + this.hasModifyConfGroupName + ",groupName=" + this.groupName + ",groupNameHits=" + this.groupNameHits + ",remarkName=" + this.remarkName + ",remarkNameHits=" + this.remarkNameHits + ",}";
}
public SearchGroupInfoItem(long j2, ArrayList<SearchHitInfo> arrayList, int i2, boolean z, boolean z2, boolean z3, String str, ArrayList<SearchHitInfo> arrayList2, String str2, ArrayList<SearchHitInfo> arrayList3) {
this.groupCodeHits = new ArrayList<>();
this.groupName = "";
this.groupNameHits = new ArrayList<>();
this.remarkName = "";
this.remarkNameHits = new ArrayList<>();
this.groupCode = j2;
this.groupCodeHits = arrayList;
this.memberCount = i2;
this.isConf = z;
this.hasModifyConfGroupFace = z2;
this.hasModifyConfGroupName = z3;
this.groupName = str;
this.groupNameHits = arrayList2;
this.remarkName = str2;
this.remarkNameHits = arrayList3;
}
}
| 2,864 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGuildActiveValue.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGuildActiveValue.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProGuildActiveValue {
int guildTodayAddActive;
int myTodayActive;
long totalGuildActive;
public GProGuildActiveValue() {
}
public int getGuildTodayAddActive() {
return this.guildTodayAddActive;
}
public int getMyTodayActive() {
return this.myTodayActive;
}
public long getTotalGuildActive() {
return this.totalGuildActive;
}
public String toString() {
return "GProGuildActiveValue{totalGuildActive=" + this.totalGuildActive + ",guildTodayAddActive=" + this.guildTodayAddActive + ",myTodayActive=" + this.myTodayActive + ",}";
}
public GProGuildActiveValue(long j2, int i2, int i3) {
this.totalGuildActive = j2;
this.guildTodayAddActive = i2;
this.myTodayActive = i3;
}
}
| 895 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
ReplyAbsElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/ReplyAbsElement.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class ReplyAbsElement {
ReplyAbsFaceElement faceElem;
int replyAbsElemType;
String textElemContent;
public ReplyAbsElement() {
}
public ReplyAbsFaceElement getFaceElem() {
return this.faceElem;
}
public int getReplyAbsElemType() {
return this.replyAbsElemType;
}
public String getTextElemContent() {
return this.textElemContent;
}
public String toString() {
return "ReplyAbsElement{replyAbsElemType=" + this.replyAbsElemType + ",textElemContent=" + this.textElemContent + ",faceElem=" + this.faceElem + ",}";
}
public ReplyAbsElement(int i2, String str, ReplyAbsFaceElement replyAbsFaceElement) {
this.replyAbsElemType = i2;
this.textElemContent = str;
this.faceElem = replyAbsFaceElement;
}
}
| 934 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAudioLiveUserListRsp.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAudioLiveUserListRsp.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProAudioLiveUserListRsp implements Serializable {
GProChannelMemberInfos channelMemberInfo;
GProChannelUserNum channelUserNum;
GProChannelMemberInfos handUpMemberInfo;
boolean isEndPage;
long nextReadInterval;
long serialVersionUID;
GProChannelMemberInfos speakOrderMemberInfo;
public GProAudioLiveUserListRsp() {
this.serialVersionUID = 1L;
this.channelMemberInfo = new GProChannelMemberInfos();
this.handUpMemberInfo = new GProChannelMemberInfos();
this.speakOrderMemberInfo = new GProChannelMemberInfos();
this.channelUserNum = new GProChannelUserNum();
}
public GProChannelMemberInfos getChannelMemberInfo() {
return this.channelMemberInfo;
}
public GProChannelUserNum getChannelUserNum() {
return this.channelUserNum;
}
public GProChannelMemberInfos getHandUpMemberInfo() {
return this.handUpMemberInfo;
}
public boolean getIsEndPage() {
return this.isEndPage;
}
public long getNextReadInterval() {
return this.nextReadInterval;
}
public GProChannelMemberInfos getSpeakOrderMemberInfo() {
return this.speakOrderMemberInfo;
}
public String toString() {
return "GProAudioLiveUserListRsp{channelMemberInfo=" + this.channelMemberInfo + ",handUpMemberInfo=" + this.handUpMemberInfo + ",nextReadInterval=" + this.nextReadInterval + ",isEndPage=" + this.isEndPage + ",speakOrderMemberInfo=" + this.speakOrderMemberInfo + ",channelUserNum=" + this.channelUserNum + ",}";
}
public GProAudioLiveUserListRsp(GProChannelMemberInfos gProChannelMemberInfos, GProChannelMemberInfos gProChannelMemberInfos2, long j2, boolean z, GProChannelMemberInfos gProChannelMemberInfos3, GProChannelUserNum gProChannelUserNum) {
this.serialVersionUID = 1L;
this.channelMemberInfo = new GProChannelMemberInfos();
this.handUpMemberInfo = new GProChannelMemberInfos();
this.speakOrderMemberInfo = new GProChannelMemberInfos();
this.channelUserNum = new GProChannelUserNum();
this.channelMemberInfo = gProChannelMemberInfos;
this.handUpMemberInfo = gProChannelMemberInfos2;
this.nextReadInterval = j2;
this.isEndPage = z;
this.speakOrderMemberInfo = gProChannelMemberInfos3;
this.channelUserNum = gProChannelUserNum;
}
}
| 2,519 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
KingHonor.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/KingHonor.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class KingHonor {
Integer groupInfoFlagEx4;
byte[] groupMsgBusiBuf;
Integer kingHonorLevel;
public KingHonor() {
}
public Integer getGroupInfoFlagEx4() {
return this.groupInfoFlagEx4;
}
public byte[] getGroupMsgBusiBuf() {
return this.groupMsgBusiBuf;
}
public Integer getKingHonorLevel() {
return this.kingHonorLevel;
}
public String toString() {
return "KingHonor{kingHonorLevel=" + this.kingHonorLevel + ",groupInfoFlagEx4=" + this.groupInfoFlagEx4 + ",groupMsgBusiBuf=" + this.groupMsgBusiBuf + ",}";
}
public KingHonor(Integer num, Integer num2, byte[] bArr) {
this.kingHonorLevel = num;
this.groupInfoFlagEx4 = num2;
this.groupMsgBusiBuf = bArr;
}
}
| 896 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
CreateGroupGrayElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/CreateGroupGrayElement.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
public final class CreateGroupGrayElement implements Serializable {
ArrayList<GrayTipMember> memberInfo;
long serialVersionUID;
public CreateGroupGrayElement() {
this.serialVersionUID = 1L;
this.memberInfo = new ArrayList<>();
}
public ArrayList<GrayTipMember> getMemberInfo() {
return this.memberInfo;
}
public String toString() {
return "CreateGroupGrayElement{memberInfo=" + this.memberInfo + ",}";
}
public CreateGroupGrayElement(ArrayList<GrayTipMember> arrayList) {
this.serialVersionUID = 1L;
this.memberInfo = new ArrayList<>();
this.memberInfo = arrayList;
}
} | 777 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
LocalAVRecordElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/LocalAVRecordElement.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class LocalAVRecordElement {
String avAbstract;
Integer extraType;
boolean hasRead;
long sendTime;
int sendType;
String senderUid;
String text;
long time;
int type;
public LocalAVRecordElement() {
this.senderUid = "";
this.text = "";
this.avAbstract = "";
}
public String getAvAbstract() {
return this.avAbstract;
}
public Integer getExtraType() {
return this.extraType;
}
public boolean getHasRead() {
return this.hasRead;
}
public long getSendTime() {
return this.sendTime;
}
public int getSendType() {
return this.sendType;
}
public String getSenderUid() {
return this.senderUid;
}
public String getText() {
return this.text;
}
public long getTime() {
return this.time;
}
public int getType() {
return this.type;
}
public String toString() {
return "LocalAVRecordElement{type=" + this.type + ",time=" + this.time + ",senderUid=" + this.senderUid + ",sendType=" + this.sendType + ",text=" + this.text + ",avAbstract=" + this.avAbstract + ",hasRead=" + this.hasRead + ",sendTime=" + this.sendTime + ",extraType=" + this.extraType + ",}";
}
public LocalAVRecordElement(int i2, long j2, String str, int i3, String str2, String str3, boolean z, long j3, Integer num) {
this.senderUid = "";
this.text = "";
this.avAbstract = "";
this.type = i2;
this.time = j2;
this.senderUid = str;
this.sendType = i3;
this.text = str2;
this.avAbstract = str3;
this.hasRead = z;
this.sendTime = j3;
this.extraType = num;
}
}
| 1,868 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProVoiceSpeakModeCfg.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProVoiceSpeakModeCfg.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProVoiceSpeakModeCfg implements Serializable {
long serialVersionUID = 1;
int speakMode;
int speakSecond;
public GProVoiceSpeakModeCfg() {
}
public int getSpeakMode() {
return this.speakMode;
}
public int getSpeakSecond() {
return this.speakSecond;
}
public String toString() {
return "GProVoiceSpeakModeCfg{speakMode=" + this.speakMode + ",speakSecond=" + this.speakSecond + ",}";
}
public GProVoiceSpeakModeCfg(int i2, int i3) {
this.speakMode = i2;
this.speakSecond = i3;
}
}
| 708 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
EmojiDescInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/EmojiDescInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class EmojiDescInfo {
String desc;
int emojiId;
String md5;
String resId;
public EmojiDescInfo() {
this.resId = "";
this.md5 = "";
this.desc = "";
}
public String getDesc() {
return this.desc;
}
public int getEmojiId() {
return this.emojiId;
}
public String getMd5() {
return this.md5;
}
public String getResId() {
return this.resId;
}
public String toString() {
return "EmojiDescInfo{emojiId=" + this.emojiId + ",resId=" + this.resId + ",md5=" + this.md5 + ",desc=" + this.desc + ",}";
}
public EmojiDescInfo(int i2, String str, String str2, String str3) {
this.resId = "";
this.md5 = "";
this.desc = "";
this.emojiId = i2;
this.resId = str;
this.md5 = str2;
this.desc = str3;
}
}
| 999 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
BulletinFeedsRecord.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/BulletinFeedsRecord.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class BulletinFeedsRecord {
int createTime;
int feedsFlag;
String feedsId;
BulletinFeedsMsg feedsMsg;
int feedsType;
String fromUid;
long groupCode;
int modifyTime;
int setTop;
public BulletinFeedsRecord() {
this.fromUid = "";
this.feedsId = "";
this.feedsMsg = new BulletinFeedsMsg();
}
public int getCreateTime() {
return this.createTime;
}
public int getFeedsFlag() {
return this.feedsFlag;
}
public String getFeedsId() {
return this.feedsId;
}
public BulletinFeedsMsg getFeedsMsg() {
return this.feedsMsg;
}
public int getFeedsType() {
return this.feedsType;
}
public String getFromUid() {
return this.fromUid;
}
public long getGroupCode() {
return this.groupCode;
}
public int getModifyTime() {
return this.modifyTime;
}
public int getSetTop() {
return this.setTop;
}
public String toString() {
return "BulletinFeedsRecord{groupCode=" + this.groupCode + ",fromUid=" + this.fromUid + ",feedsType=" + this.feedsType + ",feedsId=" + this.feedsId + ",feedsFlag=" + this.feedsFlag + ",createTime=" + this.createTime + ",modifyTime=" + this.modifyTime + ",feedsMsg=" + this.feedsMsg + ",setTop=" + this.setTop + ",}";
}
public BulletinFeedsRecord(long j2, String str, int i2, String str2, int i3, int i4, int i5, BulletinFeedsMsg bulletinFeedsMsg, int i6) {
this.fromUid = "";
this.feedsId = "";
this.feedsMsg = new BulletinFeedsMsg();
this.groupCode = j2;
this.fromUid = str;
this.feedsType = i2;
this.feedsId = str2;
this.feedsFlag = i3;
this.createTime = i4;
this.modifyTime = i5;
this.feedsMsg = bulletinFeedsMsg;
this.setTop = i6;
}
} | 1,945 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchFileAssistantFileResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchFileAssistantFileResult.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchFileAssistantFileResult {
boolean hasMore;
int resultId;
ArrayList<FileAssistantModel> resultItems;
int searchId;
public SearchFileAssistantFileResult() {
this.resultItems = new ArrayList<>();
}
public boolean getHasMore() {
return this.hasMore;
}
public int getResultId() {
return this.resultId;
}
public ArrayList<FileAssistantModel> getResultItems() {
return this.resultItems;
}
public int getSearchId() {
return this.searchId;
}
public String toString() {
return "SearchFileAssistantFileResult{searchId=" + this.searchId + ",resultId=" + this.resultId + ",hasMore=" + this.hasMore + ",resultItems=" + this.resultItems + ",}";
}
public SearchFileAssistantFileResult(int i2, int i3, boolean z, ArrayList<FileAssistantModel> arrayList) {
this.resultItems = new ArrayList<>();
this.searchId = i2;
this.resultId = i3;
this.hasMore = z;
this.resultItems = arrayList;
}
}
| 1,194 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
CustomWithdrawConfig.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/CustomWithdrawConfig.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class CustomWithdrawConfig {
int configVersion;
long msgBegin;
long msgEnd;
long withdrawBegin;
long withdrawEnd;
public CustomWithdrawConfig() {
}
public int getConfigVersion() {
return this.configVersion;
}
public long getMsgBegin() {
return this.msgBegin;
}
public long getMsgEnd() {
return this.msgEnd;
}
public long getWithdrawBegin() {
return this.withdrawBegin;
}
public long getWithdrawEnd() {
return this.withdrawEnd;
}
public String toString() {
return "CustomWithdrawConfig{withdrawBegin=" + this.withdrawBegin + ",withdrawEnd=" + this.withdrawEnd + ",msgBegin=" + this.msgBegin + ",msgEnd=" + this.msgEnd + ",configVersion=" + this.configVersion + ",}";
}
public CustomWithdrawConfig(long j2, long j3, long j4, long j5, int i2) {
this.withdrawBegin = j2;
this.withdrawEnd = j3;
this.msgBegin = j4;
this.msgEnd = j5;
this.configVersion = i2;
}
}
| 1,155 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchGroupItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchGroupItem.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchGroupItem {
ArrayList<SearchDiscussInfoItem> discussInfo;
long groupCode;
SearchGroupInfoItem groupInfo;
ArrayList<SearchGroupMemberCardItem> memberCard;
ArrayList<SearchGroupMemberProfileItem> memberProfile;
public SearchGroupItem() {
this.discussInfo = new ArrayList<>();
this.groupInfo = new SearchGroupInfoItem();
this.memberProfile = new ArrayList<>();
this.memberCard = new ArrayList<>();
}
public ArrayList<SearchDiscussInfoItem> getDiscussInfo() {
return this.discussInfo;
}
public long getGroupCode() {
return this.groupCode;
}
public SearchGroupInfoItem getGroupInfo() {
return this.groupInfo;
}
public ArrayList<SearchGroupMemberCardItem> getMemberCard() {
return this.memberCard;
}
public ArrayList<SearchGroupMemberProfileItem> getMemberProfile() {
return this.memberProfile;
}
public String toString() {
return "SearchGroupItem{groupCode=" + this.groupCode + ",discussInfo=" + this.discussInfo + ",groupInfo=" + this.groupInfo + ",memberProfile=" + this.memberProfile + ",memberCard=" + this.memberCard + ",}";
}
public SearchGroupItem(long j2, ArrayList<SearchDiscussInfoItem> arrayList, SearchGroupInfoItem searchGroupInfoItem, ArrayList<SearchGroupMemberProfileItem> arrayList2, ArrayList<SearchGroupMemberCardItem> arrayList3) {
this.discussInfo = new ArrayList<>();
this.groupInfo = new SearchGroupInfoItem();
this.memberProfile = new ArrayList<>();
this.memberCard = new ArrayList<>();
this.groupCode = j2;
this.discussInfo = arrayList;
this.groupInfo = searchGroupInfoItem;
this.memberProfile = arrayList2;
this.memberCard = arrayList3;
}
}
| 1,964 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProFeedSearchInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProFeedSearchInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProFeedSearchInfo {
long channelId;
long commentCount;
String content;
String contentId;
long createTime;
GProSearchUser creator;
long favorCount;
String feedId;
String guildHeadUrl;
long guildId;
String guildName;
ArrayList<String> highlightWords;
ArrayList<GProFeedImageEntity> images;
String inviteCode;
String joinGuildSig;
GProRecallInfo recallInfo;
int showType;
byte[] stFeed;
GProSuggestedSearch suggestedSearchInfo;
ArrayList<String> tags;
String title;
int type;
String userId;
GProFeedImageEntity videoCoverUrl;
public GProFeedSearchInfo() {
this.feedId = "";
this.userId = "";
this.title = "";
this.content = "";
this.images = new ArrayList<>();
this.inviteCode = "";
this.creator = new GProSearchUser();
this.guildName = "";
this.guildHeadUrl = "";
this.joinGuildSig = "";
this.videoCoverUrl = new GProFeedImageEntity();
this.tags = new ArrayList<>();
this.recallInfo = new GProRecallInfo();
this.contentId = "";
this.highlightWords = new ArrayList<>();
this.suggestedSearchInfo = new GProSuggestedSearch();
this.stFeed = new byte[0];
}
public long getChannelId() {
return this.channelId;
}
public long getCommentCount() {
return this.commentCount;
}
public String getContent() {
return this.content;
}
public String getContentId() {
return this.contentId;
}
public long getCreateTime() {
return this.createTime;
}
public GProSearchUser getCreator() {
return this.creator;
}
public long getFavorCount() {
return this.favorCount;
}
public String getFeedId() {
return this.feedId;
}
public String getGuildHeadUrl() {
return this.guildHeadUrl;
}
public long getGuildId() {
return this.guildId;
}
public String getGuildName() {
return this.guildName;
}
public ArrayList<String> getHighlightWords() {
return this.highlightWords;
}
public ArrayList<GProFeedImageEntity> getImages() {
return this.images;
}
public String getInviteCode() {
return this.inviteCode;
}
public String getJoinGuildSig() {
return this.joinGuildSig;
}
public GProRecallInfo getRecallInfo() {
return this.recallInfo;
}
public int getShowType() {
return this.showType;
}
public byte[] getStFeed() {
return this.stFeed;
}
public GProSuggestedSearch getSuggestedSearchInfo() {
return this.suggestedSearchInfo;
}
public ArrayList<String> getTags() {
return this.tags;
}
public String getTitle() {
return this.title;
}
public int getType() {
return this.type;
}
public String getUserId() {
return this.userId;
}
public GProFeedImageEntity getVideoCoverUrl() {
return this.videoCoverUrl;
}
public String toString() {
return "GProFeedSearchInfo{feedId=" + this.feedId + ",userId=" + this.userId + ",createTime=" + this.createTime + ",title=" + this.title + ",content=" + this.content + ",images=" + this.images + ",inviteCode=" + this.inviteCode + ",creator=" + this.creator + ",guildId=" + this.guildId + ",guildName=" + this.guildName + ",guildHeadUrl=" + this.guildHeadUrl + ",channelId=" + this.channelId + ",joinGuildSig=" + this.joinGuildSig + ",type=" + this.type + ",videoCoverUrl=" + this.videoCoverUrl + ",tags=" + this.tags + ",recallInfo=" + this.recallInfo + ",favorCount=" + this.favorCount + ",commentCount=" + this.commentCount + ",contentId=" + this.contentId + ",highlightWords=" + this.highlightWords + ",suggestedSearchInfo=" + this.suggestedSearchInfo + ",stFeed=" + this.stFeed + ",showType=" + this.showType + ",}";
}
public GProFeedSearchInfo(String str, String str2, long j2, String str3, String str4, ArrayList<GProFeedImageEntity> arrayList, String str5, GProSearchUser gProSearchUser, long j3, String str6, String str7, long j4, String str8, int i2, GProFeedImageEntity gProFeedImageEntity, ArrayList<String> arrayList2, GProRecallInfo gProRecallInfo, long j5, long j6, String str9, ArrayList<String> arrayList3, GProSuggestedSearch gProSuggestedSearch, byte[] bArr, int i3) {
this.feedId = "";
this.userId = "";
this.title = "";
this.content = "";
this.images = new ArrayList<>();
this.inviteCode = "";
this.creator = new GProSearchUser();
this.guildName = "";
this.guildHeadUrl = "";
this.joinGuildSig = "";
this.videoCoverUrl = new GProFeedImageEntity();
this.tags = new ArrayList<>();
this.recallInfo = new GProRecallInfo();
this.contentId = "";
this.highlightWords = new ArrayList<>();
this.suggestedSearchInfo = new GProSuggestedSearch();
this.stFeed = new byte[0];
this.feedId = str;
this.userId = str2;
this.createTime = j2;
this.title = str3;
this.content = str4;
this.images = arrayList;
this.inviteCode = str5;
this.creator = gProSearchUser;
this.guildId = j3;
this.guildName = str6;
this.guildHeadUrl = str7;
this.channelId = j4;
this.joinGuildSig = str8;
this.type = i2;
this.videoCoverUrl = gProFeedImageEntity;
this.tags = arrayList2;
this.recallInfo = gProRecallInfo;
this.favorCount = j5;
this.commentCount = j6;
this.contentId = str9;
this.highlightWords = arrayList3;
this.suggestedSearchInfo = gProSuggestedSearch;
this.stFeed = bArr;
this.showType = i3;
}
}
| 6,014 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupMemberInfoListId.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupMemberInfoListId.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class GroupMemberInfoListId {
int index;
String uid;
public GroupMemberInfoListId() {
this.uid = "";
}
public int getIndex() {
return this.index;
}
public String getUid() {
return this.uid;
}
public String toString() {
return "GroupMemberInfoListId{uid=" + this.uid + ",index=" + this.index + ",}";
}
public GroupMemberInfoListId(String str, int i2) {
this.uid = "";
this.uid = str;
this.index = i2;
}
} | 575 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
BroadcastHelperTransNotifyInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/BroadcastHelperTransNotifyInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class BroadcastHelperTransNotifyInfo {
long fileErrCode;
String fileErrMsg;
String filePath;
long fileProgress;
long fileSpeed;
long totalSize;
int trasferStatus;
public BroadcastHelperTransNotifyInfo() {
this.fileErrMsg = "";
this.filePath = "";
}
public long getFileErrCode() {
return this.fileErrCode;
}
public String getFileErrMsg() {
return this.fileErrMsg;
}
public String getFilePath() {
return this.filePath;
}
public long getFileProgress() {
return this.fileProgress;
}
public long getFileSpeed() {
return this.fileSpeed;
}
public long getTotalSize() {
return this.totalSize;
}
public int getTrasferStatus() {
return this.trasferStatus;
}
public String toString() {
return "BroadcastHelperTransNotifyInfo{fileProgress=" + this.fileProgress + ",fileSpeed=" + this.fileSpeed + ",fileErrCode=" + this.fileErrCode + ",fileErrMsg=" + this.fileErrMsg + ",filePath=" + this.filePath + ",totalSize=" + this.totalSize + ",trasferStatus=" + this.trasferStatus + ",}";
}
public BroadcastHelperTransNotifyInfo(long j2, long j3, long j4, String str, String str2, long j5, int i2) {
this.fileErrMsg = "";
this.filePath = "";
this.fileProgress = j2;
this.fileSpeed = j3;
this.fileErrCode = j4;
this.fileErrMsg = str;
this.filePath = str2;
this.totalSize = j5;
this.trasferStatus = i2;
}
} | 1,615 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
EmojiAD.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/EmojiAD.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class EmojiAD {
String desc;
String url;
public EmojiAD() {
this.url = "";
this.desc = "";
}
public String getDesc() {
return this.desc;
}
public String getUrl() {
return this.url;
}
public String toString() {
return "EmojiAD{url=" + this.url + ",desc=" + this.desc + ",}";
}
public EmojiAD(String str, String str2) {
this.url = "";
this.desc = "";
this.url = str;
this.desc = str2;
}
}
| 630 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupStatus.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupStatus.java | package com.tencent.qqnt.kernel.nativeinterface;
public enum GroupStatus {
KENABLE,
KDELETE,
KDISABLE
} | 116 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProYLGameTeamInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProYLGameTeamInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProYLGameTeamInfo {
long channelId;
int curMemmberNum;
String gameAppid;
String gameEnvVersion;
String gameExtraData;
int gameId;
String gamePath;
long guildId;
String icon;
boolean isPk;
int modeId;
long readyExpireTime;
long teamId;
int teamStatus;
int totalMemberNum;
public GProYLGameTeamInfo() {
this.icon = "";
this.gameAppid = "";
this.gamePath = "";
this.gameExtraData = "";
this.gameEnvVersion = "";
}
public long getChannelId() {
return this.channelId;
}
public int getCurMemmberNum() {
return this.curMemmberNum;
}
public String getGameAppid() {
return this.gameAppid;
}
public String getGameEnvVersion() {
return this.gameEnvVersion;
}
public String getGameExtraData() {
return this.gameExtraData;
}
public int getGameId() {
return this.gameId;
}
public String getGamePath() {
return this.gamePath;
}
public long getGuildId() {
return this.guildId;
}
public String getIcon() {
return this.icon;
}
public boolean getIsPk() {
return this.isPk;
}
public int getModeId() {
return this.modeId;
}
public long getReadyExpireTime() {
return this.readyExpireTime;
}
public long getTeamId() {
return this.teamId;
}
public int getTeamStatus() {
return this.teamStatus;
}
public int getTotalMemberNum() {
return this.totalMemberNum;
}
public String toString() {
return "GProYLGameTeamInfo{guildId=" + this.guildId + ",channelId=" + this.channelId + ",teamId=" + this.teamId + ",teamStatus=" + this.teamStatus + ",readyExpireTime=" + this.readyExpireTime + ",icon=" + this.icon + ",totalMemberNum=" + this.totalMemberNum + ",curMemmberNum=" + this.curMemmberNum + ",gameId=" + this.gameId + ",gameAppid=" + this.gameAppid + ",gamePath=" + this.gamePath + ",gameExtraData=" + this.gameExtraData + ",gameEnvVersion=" + this.gameEnvVersion + ",modeId=" + this.modeId + ",isPk=" + this.isPk + ",}";
}
public GProYLGameTeamInfo(long j2, long j3, long j4, int i2, long j5, String str, int i3, int i4, int i5, String str2, String str3, String str4, String str5, int i6, boolean z) {
this.icon = "";
this.gameAppid = "";
this.gamePath = "";
this.gameExtraData = "";
this.gameEnvVersion = "";
this.guildId = j2;
this.channelId = j3;
this.teamId = j4;
this.teamStatus = i2;
this.readyExpireTime = j5;
this.icon = str;
this.totalMemberNum = i3;
this.curMemmberNum = i4;
this.gameId = i5;
this.gameAppid = str2;
this.gamePath = str3;
this.gameExtraData = str4;
this.gameEnvVersion = str5;
this.modeId = i6;
this.isPk = z;
}
}
| 3,065 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProUserFreeGiftInfoRsp.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProUserFreeGiftInfoRsp.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes22.dex */
public final class GProUserFreeGiftInfoRsp implements Serializable {
String checkContext;
int countdownSecond;
int currFreeGiftNum;
int dayFreeGiftNum;
ArrayList<Long> freeGiftIds;
int gotFreeGiftNum;
int maxFreeGiftNum;
ArrayList<Integer> needCheckThemeTypes;
long nextCheckTimeMS;
int reminderFreeGiftNum;
long serialVersionUID;
public GProUserFreeGiftInfoRsp() {
this.serialVersionUID = 1L;
this.checkContext = "";
this.needCheckThemeTypes = new ArrayList<>();
this.freeGiftIds = new ArrayList<>();
}
public String getCheckContext() {
return this.checkContext;
}
public int getCountdownSecond() {
return this.countdownSecond;
}
public int getCurrFreeGiftNum() {
return this.currFreeGiftNum;
}
public int getDayFreeGiftNum() {
return this.dayFreeGiftNum;
}
public ArrayList<Long> getFreeGiftIds() {
return this.freeGiftIds;
}
public int getGotFreeGiftNum() {
return this.gotFreeGiftNum;
}
public int getMaxFreeGiftNum() {
return this.maxFreeGiftNum;
}
public ArrayList<Integer> getNeedCheckThemeTypes() {
return this.needCheckThemeTypes;
}
public long getNextCheckTimeMS() {
return this.nextCheckTimeMS;
}
public int getReminderFreeGiftNum() {
return this.reminderFreeGiftNum;
}
public String toString() {
return "GProUserFreeGiftInfoRsp{checkContext=" + this.checkContext + ",maxFreeGiftNum=" + this.maxFreeGiftNum + ",currFreeGiftNum=" + this.currFreeGiftNum + ",dayFreeGiftNum=" + this.dayFreeGiftNum + ",gotFreeGiftNum=" + this.gotFreeGiftNum + ",nextCheckTimeMS=" + this.nextCheckTimeMS + ",countdownSecond=" + this.countdownSecond + ",reminderFreeGiftNum=" + this.reminderFreeGiftNum + ",needCheckThemeTypes=" + this.needCheckThemeTypes + ",freeGiftIds=" + this.freeGiftIds + ",}";
}
public GProUserFreeGiftInfoRsp(String str, int i2, int i3, int i4, int i5, long j2, int i6, int i7, ArrayList<Integer> arrayList, ArrayList<Long> arrayList2) {
this.serialVersionUID = 1L;
this.checkContext = "";
this.needCheckThemeTypes = new ArrayList<>();
this.freeGiftIds = new ArrayList<>();
this.checkContext = str;
this.maxFreeGiftNum = i2;
this.currFreeGiftNum = i3;
this.dayFreeGiftNum = i4;
this.gotFreeGiftNum = i5;
this.nextCheckTimeMS = j2;
this.countdownSecond = i6;
this.reminderFreeGiftNum = i7;
this.needCheckThemeTypes = arrayList;
this.freeGiftIds = arrayList2;
}
}
| 2,810 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGuildInit.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGuildInit.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
import java.util.HashMap;
/* loaded from: classes2.dex */
public final class GProGuildInit {
ArrayList<GProCategoryChannelIdList> categoryList;
HashMap<Long, GProChannel> channelMap;
long guildId;
GProCategoryChannelIdList uncategorizedChannels;
public GProGuildInit() {
this.channelMap = new HashMap<>();
this.uncategorizedChannels = new GProCategoryChannelIdList();
this.categoryList = new ArrayList<>();
}
public ArrayList<GProCategoryChannelIdList> getCategoryList() {
return this.categoryList;
}
public HashMap<Long, GProChannel> getChannelMap() {
return this.channelMap;
}
public long getGuildId() {
return this.guildId;
}
public GProCategoryChannelIdList getUncategorizedChannels() {
return this.uncategorizedChannels;
}
public String toString() {
return "GProGuildInit{guildId=" + this.guildId + ",channelMap=" + this.channelMap + ",uncategorizedChannels=" + this.uncategorizedChannels + ",categoryList=" + this.categoryList + ",}";
}
public GProGuildInit(long j2, HashMap<Long, GProChannel> hashMap, GProCategoryChannelIdList gProCategoryChannelIdList, ArrayList<GProCategoryChannelIdList> arrayList) {
this.channelMap = new HashMap<>();
this.uncategorizedChannels = new GProCategoryChannelIdList();
this.categoryList = new ArrayList<>();
this.guildId = j2;
this.channelMap = hashMap;
this.uncategorizedChannels = gProCategoryChannelIdList;
this.categoryList = arrayList;
}
}
| 1,663 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProCmd0x10c3Filter.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProCmd0x10c3Filter.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes22.dex */
public final class GProCmd0x10c3Filter {
int shareCopywriting;
public GProCmd0x10c3Filter() {
}
public int getShareCopywriting() {
return this.shareCopywriting;
}
public String toString() {
return "GProCmd0x10c3Filter{shareCopywriting=" + this.shareCopywriting + ",}";
}
public GProCmd0x10c3Filter(int i2) {
this.shareCopywriting = i2;
}
}
| 487 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProFDLEntry.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProFDLEntry.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes4.dex */
public final class GProFDLEntry {
String key;
String value;
public GProFDLEntry() {
this.key = "";
this.value = "";
}
public String getKey() {
return this.key;
}
public String getValue() {
return this.value;
}
public String toString() {
return "GProFDLEntry{key=" + this.key + ",value=" + this.value + ",}";
}
public GProFDLEntry(String str, String str2) {
this.key = "";
this.value = "";
this.key = str;
this.value = str2;
}
}
| 635 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProUnionResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProUnionResult.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProUnionResult {
byte[] feedCookie;
boolean feedIsEnd;
long feedTotal;
ArrayList<GProGuildFeedSearchRes> guildFeeds;
ArrayList<GProGuildMsgSearchRes> guildMsgs;
byte[] msgCookie;
boolean msgIsEnd;
long msgTotal;
public GProUnionResult() {
this.guildMsgs = new ArrayList<>();
this.msgCookie = new byte[0];
this.guildFeeds = new ArrayList<>();
this.feedCookie = new byte[0];
}
public byte[] getFeedCookie() {
return this.feedCookie;
}
public boolean getFeedIsEnd() {
return this.feedIsEnd;
}
public long getFeedTotal() {
return this.feedTotal;
}
public ArrayList<GProGuildFeedSearchRes> getGuildFeeds() {
return this.guildFeeds;
}
public ArrayList<GProGuildMsgSearchRes> getGuildMsgs() {
return this.guildMsgs;
}
public byte[] getMsgCookie() {
return this.msgCookie;
}
public boolean getMsgIsEnd() {
return this.msgIsEnd;
}
public long getMsgTotal() {
return this.msgTotal;
}
public String toString() {
return "GProUnionResult{msgTotal=" + this.msgTotal + ",guildMsgs=" + this.guildMsgs + ",msgCookie=" + this.msgCookie + ",msgIsEnd=" + this.msgIsEnd + ",feedTotal=" + this.feedTotal + ",guildFeeds=" + this.guildFeeds + ",feedCookie=" + this.feedCookie + ",feedIsEnd=" + this.feedIsEnd + ",}";
}
public GProUnionResult(long j2, ArrayList<GProGuildMsgSearchRes> arrayList, byte[] bArr, boolean z, long j3, ArrayList<GProGuildFeedSearchRes> arrayList2, byte[] bArr2, boolean z2) {
this.guildMsgs = new ArrayList<>();
this.msgCookie = new byte[0];
this.guildFeeds = new ArrayList<>();
this.feedCookie = new byte[0];
this.msgTotal = j2;
this.guildMsgs = arrayList;
this.msgCookie = bArr;
this.msgIsEnd = z;
this.feedTotal = j3;
this.guildFeeds = arrayList2;
this.feedCookie = bArr2;
this.feedIsEnd = z2;
}
}
| 2,165 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
SearchLocalInfoResult.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/SearchLocalInfoResult.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes.dex */
public final class SearchLocalInfoResult {
ArrayList<SearchBuddyItem> buddyList;
ArrayList<SearchChatSummaryItem> chatsSummary;
ArrayList<SearchFileItem> fileInfos;
ArrayList<SearchGroupItem> groupInfos;
int id;
SearchLocalInfoType type;
public SearchLocalInfoResult() {
this.type = SearchLocalInfoType.values()[0];
this.buddyList = new ArrayList<>();
this.groupInfos = new ArrayList<>();
this.chatsSummary = new ArrayList<>();
this.fileInfos = new ArrayList<>();
}
public ArrayList<SearchBuddyItem> getBuddyList() {
return this.buddyList;
}
public ArrayList<SearchChatSummaryItem> getChatsSummary() {
return this.chatsSummary;
}
public ArrayList<SearchFileItem> getFileInfos() {
return this.fileInfos;
}
public ArrayList<SearchGroupItem> getGroupInfos() {
return this.groupInfos;
}
public int getId() {
return this.id;
}
public SearchLocalInfoType getType() {
return this.type;
}
public String toString() {
return "SearchLocalInfoResult{id=" + this.id + ",type=" + this.type + ",buddyList=" + this.buddyList + ",groupInfos=" + this.groupInfos + ",chatsSummary=" + this.chatsSummary + ",fileInfos=" + this.fileInfos + ",}";
}
public SearchLocalInfoResult(int i2, SearchLocalInfoType searchLocalInfoType, ArrayList<SearchBuddyItem> arrayList, ArrayList<SearchGroupItem> arrayList2, ArrayList<SearchChatSummaryItem> arrayList3, ArrayList<SearchFileItem> arrayList4) {
this.type = SearchLocalInfoType.values()[0];
this.buddyList = new ArrayList<>();
this.groupInfos = new ArrayList<>();
this.chatsSummary = new ArrayList<>();
this.fileInfos = new ArrayList<>();
this.id = i2;
this.type = searchLocalInfoType;
this.buddyList = arrayList;
this.groupInfos = arrayList2;
this.chatsSummary = arrayList3;
this.fileInfos = arrayList4;
}
}
| 2,151 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProInviteInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProInviteInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProInviteInfo {
String base64Avatar;
long chnId;
long guildId;
String inviteUrl;
String joinSig;
String name;
String nickName;
public GProInviteInfo() {
this.name = "";
this.base64Avatar = "";
this.joinSig = "";
this.nickName = "";
this.inviteUrl = "";
}
public String getBase64Avatar() {
return this.base64Avatar;
}
public long getChnId() {
return this.chnId;
}
public long getGuildId() {
return this.guildId;
}
public String getInviteUrl() {
return this.inviteUrl;
}
public String getJoinSig() {
return this.joinSig;
}
public String getName() {
return this.name;
}
public String getNickName() {
return this.nickName;
}
public String toString() {
return "GProInviteInfo{guildId=" + this.guildId + ",chnId=" + this.chnId + ",name=" + this.name + ",base64Avatar=" + this.base64Avatar + ",joinSig=" + this.joinSig + ",nickName=" + this.nickName + ",inviteUrl=" + this.inviteUrl + ",}";
}
public GProInviteInfo(long j2, long j3, String str, String str2, String str3, String str4, String str5) {
this.name = "";
this.base64Avatar = "";
this.joinSig = "";
this.nickName = "";
this.inviteUrl = "";
this.guildId = j2;
this.chnId = j3;
this.name = str;
this.base64Avatar = str2;
this.joinSig = str3;
this.nickName = str4;
this.inviteUrl = str5;
}
}
| 1,661 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupFileListForm.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupFileListForm.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class GroupFileListForm {
int fileCount;
String folderId;
int showOnlinedocFolder;
int sortOrder;
GroupFileSortType sortType;
int startIndex;
public GroupFileListForm() {
this.sortType = GroupFileSortType.values()[0];
}
public int getFileCount() {
return this.fileCount;
}
public String getFolderId() {
return this.folderId;
}
public int getShowOnlinedocFolder() {
return this.showOnlinedocFolder;
}
public int getSortOrder() {
return this.sortOrder;
}
public GroupFileSortType getSortType() {
return this.sortType;
}
public int getStartIndex() {
return this.startIndex;
}
public String toString() {
return "GroupFileListForm{folderId=" + this.folderId + ",sortType=" + this.sortType + ",fileCount=" + this.fileCount + ",startIndex=" + this.startIndex + ",sortOrder=" + this.sortOrder + ",showOnlinedocFolder=" + this.showOnlinedocFolder + ",}";
}
public GroupFileListForm(String str, GroupFileSortType groupFileSortType, int i2, int i3, int i4, int i5) {
this.sortType = GroupFileSortType.values()[0];
this.folderId = str;
this.sortType = groupFileSortType;
this.fileCount = i2;
this.startIndex = i3;
this.sortOrder = i4;
this.showOnlinedocFolder = i5;
}
}
| 1,501 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupBulletinFeedSetting.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupBulletinFeedSetting.java | package com.tencent.qqnt.kernel.nativeinterface;
public final class GroupBulletinFeedSetting {
int confirmRequired;
int isShowEditCard;
int remindTs;
int tipWindowType;
public GroupBulletinFeedSetting() {
}
public int getConfirmRequired() {
return this.confirmRequired;
}
public int getIsShowEditCard() {
return this.isShowEditCard;
}
public int getRemindTs() {
return this.remindTs;
}
public int getTipWindowType() {
return this.tipWindowType;
}
public String toString() {
return "GroupBulletinFeedSetting{isShowEditCard=" + this.isShowEditCard + ",remindTs=" + this.remindTs + ",tipWindowType=" + this.tipWindowType + ",confirmRequired=" + this.confirmRequired + ",}";
}
public GroupBulletinFeedSetting(int i2, int i3, int i4, int i5) {
this.isShowEditCard = i2;
this.remindTs = i3;
this.tipWindowType = i4;
this.confirmRequired = i5;
}
} | 992 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupInviteExt.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupInviteExt.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class GroupInviteExt implements Serializable {
long groupCode;
long serialVersionUID;
GroupInviteType srcType;
GroupInviteStatus waitStatus;
public GroupInviteExt() {
this.serialVersionUID = 1L;
this.srcType = GroupInviteType.values()[0];
this.waitStatus = GroupInviteStatus.values()[0];
}
public long getGroupCode() {
return this.groupCode;
}
public GroupInviteType getSrcType() {
return this.srcType;
}
public GroupInviteStatus getWaitStatus() {
return this.waitStatus;
}
public String toString() {
return "GroupInviteExt{srcType=" + this.srcType + ",groupCode=" + this.groupCode + ",waitStatus=" + this.waitStatus + ",}";
}
public GroupInviteExt(GroupInviteType groupInviteType, long j2, GroupInviteStatus groupInviteStatus) {
this.serialVersionUID = 1L;
this.srcType = GroupInviteType.values()[0];
this.waitStatus = GroupInviteStatus.values()[0];
this.srcType = groupInviteType;
this.groupCode = j2;
this.waitStatus = groupInviteStatus;
}
}
| 1,267 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProPlusPanelBotFeature.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProPlusPanelBotFeature.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProPlusPanelBotFeature {
GProBotInfo botInfo;
GProBotFeatureInfo commandInfo;
String elementId;
String icon;
GProBotFeatureInfo serviceInfo;
String serviceName;
public GProPlusPanelBotFeature() {
this.botInfo = new GProBotInfo();
this.serviceInfo = new GProBotFeatureInfo();
this.commandInfo = new GProBotFeatureInfo();
this.icon = "";
this.serviceName = "";
this.elementId = "";
}
public GProBotInfo getBotInfo() {
return this.botInfo;
}
public GProBotFeatureInfo getCommandInfo() {
return this.commandInfo;
}
public String getElementId() {
return this.elementId;
}
public String getIcon() {
return this.icon;
}
public GProBotFeatureInfo getServiceInfo() {
return this.serviceInfo;
}
public String getServiceName() {
return this.serviceName;
}
public String toString() {
return "GProPlusPanelBotFeature{botInfo=" + this.botInfo + ",serviceInfo=" + this.serviceInfo + ",commandInfo=" + this.commandInfo + ",icon=" + this.icon + ",serviceName=" + this.serviceName + ",elementId=" + this.elementId + ",}";
}
public GProPlusPanelBotFeature(GProBotInfo gProBotInfo, GProBotFeatureInfo gProBotFeatureInfo, GProBotFeatureInfo gProBotFeatureInfo2, String str, String str2, String str3) {
this.botInfo = new GProBotInfo();
this.serviceInfo = new GProBotFeatureInfo();
this.commandInfo = new GProBotFeatureInfo();
this.icon = "";
this.serviceName = "";
this.elementId = "";
this.botInfo = gProBotInfo;
this.serviceInfo = gProBotFeatureInfo;
this.commandInfo = gProBotFeatureInfo2;
this.icon = str;
this.serviceName = str2;
this.elementId = str3;
}
}
| 1,948 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGuildOnlineReportReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGuildOnlineReportReq.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProGuildOnlineReportReq {
int activeTab;
ArrayList<GProGuildBrowseInfo> browseInfo;
ArrayList<GProGuildOnlineReportExtInfo> exts;
boolean isVisiting;
int scene;
int sourceType;
long tinyId;
public GProGuildOnlineReportReq() {
this.browseInfo = new ArrayList<>();
this.exts = new ArrayList<>();
}
public int getActiveTab() {
return this.activeTab;
}
public ArrayList<GProGuildBrowseInfo> getBrowseInfo() {
return this.browseInfo;
}
public ArrayList<GProGuildOnlineReportExtInfo> getExts() {
return this.exts;
}
public boolean getIsVisiting() {
return this.isVisiting;
}
public int getScene() {
return this.scene;
}
public int getSourceType() {
return this.sourceType;
}
public long getTinyId() {
return this.tinyId;
}
public String toString() {
return "GProGuildOnlineReportReq{tinyId=" + this.tinyId + ",activeTab=" + this.activeTab + ",browseInfo=" + this.browseInfo + ",isVisiting=" + this.isVisiting + ",scene=" + this.scene + ",sourceType=" + this.sourceType + ",exts=" + this.exts + ",}";
}
public GProGuildOnlineReportReq(long j2, int i2, ArrayList<GProGuildBrowseInfo> arrayList, boolean z, int i3, int i4, ArrayList<GProGuildOnlineReportExtInfo> arrayList2) {
this.browseInfo = new ArrayList<>();
this.exts = new ArrayList<>();
this.tinyId = j2;
this.activeTab = i2;
this.browseInfo = arrayList;
this.isVisiting = z;
this.scene = i3;
this.sourceType = i4;
this.exts = arrayList2;
}
}
| 1,793 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProLiveResultItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProLiveResultItem.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProLiveResultItem {
GProLiveRoomInfo liveChannel;
ArrayList<MsgAbstract> msgAbstracts;
public GProLiveResultItem() {
this.liveChannel = new GProLiveRoomInfo();
this.msgAbstracts = new ArrayList<>();
}
public GProLiveRoomInfo getLiveChannel() {
return this.liveChannel;
}
public ArrayList<MsgAbstract> getMsgAbstracts() {
return this.msgAbstracts;
}
public String toString() {
return "GProLiveResultItem{liveChannel=" + this.liveChannel + ",msgAbstracts=" + this.msgAbstracts + ",}";
}
public GProLiveResultItem(GProLiveRoomInfo gProLiveRoomInfo, ArrayList<MsgAbstract> arrayList) {
this.liveChannel = new GProLiveRoomInfo();
this.msgAbstracts = new ArrayList<>();
this.liveChannel = gProLiveRoomInfo;
this.msgAbstracts = arrayList;
}
}
| 992 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProScheduleUser.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProScheduleUser.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProScheduleUser {
String avatar;
String nick;
int role;
long tinyId;
public GProScheduleUser() {
this.nick = "";
this.avatar = "";
}
public String getAvatar() {
return this.avatar;
}
public String getNick() {
return this.nick;
}
public int getRole() {
return this.role;
}
public long getTinyId() {
return this.tinyId;
}
public String toString() {
return "GProScheduleUser{nick=" + this.nick + ",tinyId=" + this.tinyId + ",avatar=" + this.avatar + ",role=" + this.role + ",}";
}
public GProScheduleUser(String str, long j2, String str2, int i2) {
this.nick = "";
this.avatar = "";
this.nick = str;
this.tinyId = j2;
this.avatar = str2;
this.role = i2;
}
}
| 940 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProBlackUserInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProBlackUserInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProBlackUserInfo {
String avatarUrl;
String nickName;
long tinyId;
public GProBlackUserInfo() {
this.nickName = "";
this.avatarUrl = "";
}
public String getAvatarUrl() {
return this.avatarUrl;
}
public String getNickName() {
return this.nickName;
}
public long getTinyId() {
return this.tinyId;
}
public String toString() {
return "GProBlackUserInfo{tinyId=" + this.tinyId + ",nickName=" + this.nickName + ",avatarUrl=" + this.avatarUrl + ",}";
}
public GProBlackUserInfo(long j2, String str, String str2) {
this.nickName = "";
this.avatarUrl = "";
this.tinyId = j2;
this.nickName = str;
this.avatarUrl = str2;
}
}
| 871 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
TempChatInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/TempChatInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes.dex */
public final class TempChatInfo {
int chatType;
String fromNick;
String groupCode;
String peerUid;
int sessionType;
public TempChatInfo() {
this.peerUid = "";
this.groupCode = "";
this.fromNick = "";
}
public int getChatType() {
return this.chatType;
}
public String getFromNick() {
return this.fromNick;
}
public String getGroupCode() {
return this.groupCode;
}
public String getPeerUid() {
return this.peerUid;
}
public int getSessionType() {
return this.sessionType;
}
public String toString() {
return "TempChatInfo{sessionType=" + this.sessionType + ",chatType=" + this.chatType + ",peerUid=" + this.peerUid + ",groupCode=" + this.groupCode + ",fromNick=" + this.fromNick + ",}";
}
public TempChatInfo(int i2, int i3, String str, String str2, String str3) {
this.peerUid = "";
this.groupCode = "";
this.fromNick = "";
this.sessionType = i2;
this.chatType = i3;
this.peerUid = str;
this.groupCode = str2;
this.fromNick = str3;
}
}
| 1,267 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
PttVoiceType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/PttVoiceType.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public enum PttVoiceType {
KUNKNOWN,
KINTERCOM,
KSOUNDRECORD,
KVOICECHANGE
}
| 175 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProLinkDetailInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProLinkDetailInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProLinkDetailInfo implements Serializable {
String longUrl;
long serialVersionUID;
public GProLinkDetailInfo() {
this.serialVersionUID = 1L;
this.longUrl = "";
}
public String getLongUrl() {
return this.longUrl;
}
public String toString() {
return "GProLinkDetailInfo{longUrl=" + this.longUrl + ",}";
}
public GProLinkDetailInfo(String str) {
this.serialVersionUID = 1L;
this.longUrl = "";
this.longUrl = str;
}
}
| 646 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
VASGiftSpendCoinItem.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/VASGiftSpendCoinItem.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* compiled from: P */
/* loaded from: classes.dex */
public final class VASGiftSpendCoinItem implements Serializable {
int amt;
int coinType;
long serialVersionUID = 1;
public VASGiftSpendCoinItem() {
}
public int getAmt() {
return this.amt;
}
public int getCoinType() {
return this.coinType;
}
public String toString() {
return "VASGiftSpendCoinItem{coinType=" + this.coinType + ",amt=" + this.amt + ",}";
}
public VASGiftSpendCoinItem(int i2, int i3) {
this.coinType = i2;
this.amt = i3;
}
}
| 672 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
ContactMsgBoxInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/ContactMsgBoxInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class ContactMsgBoxInfo {
Contact contact;
MsgBoxNecessaryMsgInfo firstUnreadMsgInfo;
ArrayList<SpecificEventTypeInfoInMsgBox> listOfSpecificEventTypeInfosInMsgBox;
Long unreadCnt;
public ContactMsgBoxInfo() {
this.contact = new Contact();
this.listOfSpecificEventTypeInfosInMsgBox = new ArrayList<>();
}
public Contact getContact() {
return this.contact;
}
public MsgBoxNecessaryMsgInfo getFirstUnreadMsgInfo() {
return this.firstUnreadMsgInfo;
}
public ArrayList<SpecificEventTypeInfoInMsgBox> getListOfSpecificEventTypeInfosInMsgBox() {
return this.listOfSpecificEventTypeInfosInMsgBox;
}
public Long getUnreadCnt() {
return this.unreadCnt;
}
public String toString() {
return "ContactMsgBoxInfo{contact=" + this.contact + ",firstUnreadMsgInfo=" + this.firstUnreadMsgInfo + ",unreadCnt=" + this.unreadCnt + ",listOfSpecificEventTypeInfosInMsgBox=" + this.listOfSpecificEventTypeInfosInMsgBox + ",}";
}
public ContactMsgBoxInfo(Contact contact, MsgBoxNecessaryMsgInfo msgBoxNecessaryMsgInfo, Long l2, ArrayList<SpecificEventTypeInfoInMsgBox> arrayList) {
this.contact = new Contact();
this.listOfSpecificEventTypeInfosInMsgBox = new ArrayList<>();
this.contact = contact;
this.firstUnreadMsgInfo = msgBoxNecessaryMsgInfo;
this.unreadCnt = l2;
this.listOfSpecificEventTypeInfosInMsgBox = arrayList;
}
}
| 1,634 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
IKernelGroupService.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IKernelGroupService.java | package com.tencent.qqnt.kernel.nativeinterface;
public interface IKernelGroupService {
void getTransferableMemberInfo(long uin, IGetTransferableMemberCallback cb);
long addKernelGroupListener(IKernelGroupListener ln);
}
| 231 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
Contact.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/Contact.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
public final class Contact implements IKernelModel, Serializable {
int chatType;
String guildId;
String peerUid;
long serialVersionUID;
public Contact() {
this.serialVersionUID = 1L;
this.peerUid = "";
this.guildId = "";
}
public int getChatType() {
return this.chatType;
}
public String getGuildId() {
return this.guildId;
}
public String getPeerUid() {
return this.peerUid;
}
public void setChatType(int i2) {
this.chatType = i2;
}
public void setGuildId(String str) {
this.guildId = str;
}
public void setPeerUid(String str) {
this.peerUid = str;
}
public String toString() {
return "Contact{chatType=" + this.chatType + ",peerUid=" + this.peerUid + ",guildId=" + this.guildId + ",}";
}
public Contact(int i2, String str, String str2) {
this.serialVersionUID = 1L;
this.peerUid = "";
this.guildId = "";
this.chatType = i2;
this.peerUid = str;
this.guildId = str2;
}
} | 1,175 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProDocHit.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProDocHit.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProDocHit {
GProRelation relation;
long value;
public GProDocHit() {
this.relation = GProRelation.values()[0];
}
public GProRelation getRelation() {
return this.relation;
}
public long getValue() {
return this.value;
}
public String toString() {
return "GProDocHit{value=" + this.value + ",relation=" + this.relation + ",}";
}
public GProDocHit(long j2, GProRelation gProRelation) {
this.relation = GProRelation.values()[0];
this.value = j2;
this.relation = gProRelation;
}
}
| 687 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
LiveGiftElement.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/LiveGiftElement.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class LiveGiftElement {
int effectLevel;
String kStrGiftName;
String kStrReceiverTinyId;
long kUInt64GiftId;
long kUInt64GiftNum;
int materialId;
LiveGiftMemberInfo receiverMemberInfo;
int sendType;
LiveGiftMemberInfo senderMemberInfo;
String senderTinyId;
public LiveGiftElement() {
this.kStrReceiverTinyId = "";
this.kStrGiftName = "";
this.senderTinyId = "";
this.senderMemberInfo = new LiveGiftMemberInfo();
this.receiverMemberInfo = new LiveGiftMemberInfo();
}
public int getEffectLevel() {
return this.effectLevel;
}
public String getKStrGiftName() {
return this.kStrGiftName;
}
public String getKStrReceiverTinyId() {
return this.kStrReceiverTinyId;
}
public long getKUInt64GiftId() {
return this.kUInt64GiftId;
}
public long getKUInt64GiftNum() {
return this.kUInt64GiftNum;
}
public int getMaterialId() {
return this.materialId;
}
public LiveGiftMemberInfo getReceiverMemberInfo() {
return this.receiverMemberInfo;
}
public int getSendType() {
return this.sendType;
}
public LiveGiftMemberInfo getSenderMemberInfo() {
return this.senderMemberInfo;
}
public String getSenderTinyId() {
return this.senderTinyId;
}
public String toString() {
return "LiveGiftElement{kStrReceiverTinyId=" + this.kStrReceiverTinyId + ",kUInt64GiftNum=" + this.kUInt64GiftNum + ",kUInt64GiftId=" + this.kUInt64GiftId + ",kStrGiftName=" + this.kStrGiftName + ",materialId=" + this.materialId + ",effectLevel=" + this.effectLevel + ",sendType=" + this.sendType + ",senderTinyId=" + this.senderTinyId + ",senderMemberInfo=" + this.senderMemberInfo + ",receiverMemberInfo=" + this.receiverMemberInfo + ",}";
}
public LiveGiftElement(String str, long j2, long j3, String str2, int i2, int i3, int i4, String str3, LiveGiftMemberInfo liveGiftMemberInfo, LiveGiftMemberInfo liveGiftMemberInfo2) {
this.kStrReceiverTinyId = "";
this.kStrGiftName = "";
this.senderTinyId = "";
this.senderMemberInfo = new LiveGiftMemberInfo();
this.receiverMemberInfo = new LiveGiftMemberInfo();
this.kStrReceiverTinyId = str;
this.kUInt64GiftNum = j2;
this.kUInt64GiftId = j3;
this.kStrGiftName = str2;
this.materialId = i2;
this.effectLevel = i3;
this.sendType = i4;
this.senderTinyId = str3;
this.senderMemberInfo = liveGiftMemberInfo;
this.receiverMemberInfo = liveGiftMemberInfo2;
}
}
| 2,773 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProGuildState.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProGuildState.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProGuildState {
ArrayList<GProChannelState> channelStateList;
long guildId;
long stateSeq;
GProUserChannelState userChannelState;
public GProGuildState() {
this.channelStateList = new ArrayList<>();
this.userChannelState = new GProUserChannelState();
}
public ArrayList<GProChannelState> getChannelStateList() {
return this.channelStateList;
}
public long getGuildId() {
return this.guildId;
}
public long getStateSeq() {
return this.stateSeq;
}
public GProUserChannelState getUserChannelState() {
return this.userChannelState;
}
public String toString() {
return "GProGuildState{guildId=" + this.guildId + ",channelStateList=" + this.channelStateList + ",stateSeq=" + this.stateSeq + ",userChannelState=" + this.userChannelState + ",}";
}
public GProGuildState(long j2, ArrayList<GProChannelState> arrayList, long j3, GProUserChannelState gProUserChannelState) {
this.channelStateList = new ArrayList<>();
this.userChannelState = new GProUserChannelState();
this.guildId = j2;
this.channelStateList = arrayList;
this.stateSeq = j3;
this.userChannelState = gProUserChannelState;
}
}
| 1,397 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
RICHTEXTCONTENTTYPE.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/RICHTEXTCONTENTTYPE.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public enum RICHTEXTCONTENTTYPE {
UNKNOWN_CONTENT_TYPE,
TEXT_CONTENT,
AT_CONTENT,
URL_CONTENT,
EMOJI_CONTENT,
CHANNEL_CONTENT
}
| 234 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProSubscribeUserGuide.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProSubscribeUserGuide.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes4.dex */
public final class GProSubscribeUserGuide {
String avatar;
String cover;
long guildId;
String guildName;
String profile;
public GProSubscribeUserGuide() {
this.guildName = "";
this.avatar = "";
this.profile = "";
this.cover = "";
}
public String getAvatar() {
return this.avatar;
}
public String getCover() {
return this.cover;
}
public long getGuildId() {
return this.guildId;
}
public String getGuildName() {
return this.guildName;
}
public String getProfile() {
return this.profile;
}
public String toString() {
return "GProSubscribeUserGuide{guildId=" + this.guildId + ",guildName=" + this.guildName + ",avatar=" + this.avatar + ",profile=" + this.profile + ",cover=" + this.cover + ",}";
}
public GProSubscribeUserGuide(long j2, String str, String str2, String str3, String str4) {
this.guildName = "";
this.avatar = "";
this.profile = "";
this.cover = "";
this.guildId = j2;
this.guildName = str;
this.avatar = str2;
this.profile = str3;
this.cover = str4;
}
}
| 1,293 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProClientArchive.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProClientArchive.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProClientArchive {
String archiveName;
int clientId;
GProSmobaArchiveTemplate template1;
GProArchiveTemplate2 template2;
int templateId;
public GProClientArchive() {
this.archiveName = "";
this.template1 = new GProSmobaArchiveTemplate();
this.template2 = new GProArchiveTemplate2();
}
public String getArchiveName() {
return this.archiveName;
}
public int getClientId() {
return this.clientId;
}
public GProSmobaArchiveTemplate getTemplate1() {
return this.template1;
}
public GProArchiveTemplate2 getTemplate2() {
return this.template2;
}
public int getTemplateId() {
return this.templateId;
}
public String toString() {
return "GProClientArchive{clientId=" + this.clientId + ",archiveName=" + this.archiveName + ",templateId=" + this.templateId + ",template1=" + this.template1 + ",template2=" + this.template2 + ",}";
}
public GProClientArchive(int i2, String str, int i3, GProSmobaArchiveTemplate gProSmobaArchiveTemplate, GProArchiveTemplate2 gProArchiveTemplate2) {
this.archiveName = "";
this.template1 = new GProSmobaArchiveTemplate();
this.template2 = new GProArchiveTemplate2();
this.clientId = i2;
this.archiveName = str;
this.templateId = i3;
this.template1 = gProSmobaArchiveTemplate;
this.template2 = gProArchiveTemplate2;
}
}
| 1,571 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProLiveFrame.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProLiveFrame.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProLiveFrame {
ArrayList<GProPlayAddress> address;
Integer codecType;
String definition;
Integer level;
public GProLiveFrame() {
this.address = new ArrayList<>();
}
public ArrayList<GProPlayAddress> getAddress() {
return this.address;
}
public Integer getCodecType() {
return this.codecType;
}
public String getDefinition() {
return this.definition;
}
public Integer getLevel() {
return this.level;
}
public String toString() {
return "GProLiveFrame{level=" + this.level + ",address=" + this.address + ",definition=" + this.definition + ",codecType=" + this.codecType + ",}";
}
public GProLiveFrame(Integer num, ArrayList<GProPlayAddress> arrayList, String str, Integer num2) {
this.address = new ArrayList<>();
this.level = num;
this.address = arrayList;
this.definition = str;
this.codecType = num2;
}
}
| 1,104 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProPlayFaceAnimationPolicy.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProPlayFaceAnimationPolicy.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes4.dex */
public final class GProPlayFaceAnimationPolicy {
int userIdleTime;
public GProPlayFaceAnimationPolicy() {
}
public int getUserIdleTime() {
return this.userIdleTime;
}
public String toString() {
return "GProPlayFaceAnimationPolicy{userIdleTime=" + this.userIdleTime + ",}";
}
public GProPlayFaceAnimationPolicy(int i2) {
this.userIdleTime = i2;
}
}
| 494 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProTrtcInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProTrtcInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProTrtcInfo {
String sig;
Integer time;
public GProTrtcInfo() {
}
public String getSig() {
return this.sig;
}
public Integer getTime() {
return this.time;
}
public String toString() {
return "GProTrtcInfo{sig=" + this.sig + ",time=" + this.time + ",}";
}
public GProTrtcInfo(String str, Integer num) {
this.sig = str;
this.time = num;
}
}
| 534 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupNotifyTargetMsg.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupNotifyTargetMsg.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class GroupNotifyTargetMsg {
long groupCode;
String postscript;
long seq;
GroupNotifyMsgType type;
public GroupNotifyTargetMsg() {
this.type = GroupNotifyMsgType.values()[0];
this.postscript = "";
}
public long getGroupCode() {
return this.groupCode;
}
public String getPostscript() {
return this.postscript;
}
public long getSeq() {
return this.seq;
}
public GroupNotifyMsgType getType() {
return this.type;
}
public String toString() {
return "GroupNotifyTargetMsg{seq=" + this.seq + ",type=" + this.type + ",groupCode=" + this.groupCode + ",postscript=" + this.postscript + ",}";
}
public GroupNotifyTargetMsg(long j2, GroupNotifyMsgType groupNotifyMsgType, long j3, String str) {
this.type = GroupNotifyMsgType.values()[0];
this.postscript = "";
this.seq = j2;
this.type = groupNotifyMsgType;
this.groupCode = j3;
this.postscript = str;
}
}
| 1,146 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
VASMsgBubble.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/VASMsgBubble.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes.dex */
public final class VASMsgBubble {
Integer bubbleDiyTextId;
Integer bubbleId;
Integer canConvertToText;
Integer subBubbleId;
public VASMsgBubble() {
}
public Integer getBubbleDiyTextId() {
return this.bubbleDiyTextId;
}
public Integer getBubbleId() {
return this.bubbleId;
}
public Integer getCanConvertToText() {
return this.canConvertToText;
}
public Integer getSubBubbleId() {
return this.subBubbleId;
}
public String toString() {
return "VASMsgBubble{bubbleId=" + this.bubbleId + ",bubbleDiyTextId=" + this.bubbleDiyTextId + ",subBubbleId=" + this.subBubbleId + ",canConvertToText=" + this.canConvertToText + ",}";
}
public VASMsgBubble(Integer num, Integer num2, Integer num3, Integer num4) {
this.bubbleId = num;
this.bubbleDiyTextId = num2;
this.subBubbleId = num3;
this.canConvertToText = num4;
}
}
| 1,061 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
NetStatusType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/NetStatusType.java | package com.tencent.qqnt.kernel.nativeinterface;
public enum NetStatusType {
KNOTREACHABLE,
KREACHABLEVIAWIFI,
KREACHABLEVIA2G,
KREACHABLEVIA3G,
KREACHABLEVIA4G,
KREACHABLEVIA5G,
KREACHABLEUNKNOWN
} | 227 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProChannelToolBar.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProChannelToolBar.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProChannelToolBar implements Serializable {
long serialVersionUID;
String toolbarListStr;
public GProChannelToolBar() {
this.serialVersionUID = 1L;
this.toolbarListStr = "";
}
public String getToolbarListStr() {
return this.toolbarListStr;
}
public String toString() {
return "GProChannelToolBar{toolbarListStr=" + this.toolbarListStr + ",}";
}
public GProChannelToolBar(String str) {
this.serialVersionUID = 1L;
this.toolbarListStr = "";
this.toolbarListStr = str;
}
}
| 702 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
EmojiZPlan.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/EmojiZPlan.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class EmojiZPlan {
int actionId;
String actionName;
int actionType;
String bytesReserveInfo;
long peerUid;
int playerNumber;
public EmojiZPlan() {
this.actionName = "";
this.bytesReserveInfo = "";
}
public int getActionId() {
return this.actionId;
}
public String getActionName() {
return this.actionName;
}
public int getActionType() {
return this.actionType;
}
public String getBytesReserveInfo() {
return this.bytesReserveInfo;
}
public long getPeerUid() {
return this.peerUid;
}
public int getPlayerNumber() {
return this.playerNumber;
}
public String toString() {
return "EmojiZPlan{actionId=" + this.actionId + ",actionName=" + this.actionName + ",actionType=" + this.actionType + ",playerNumber=" + this.playerNumber + ",peerUid=" + this.peerUid + ",bytesReserveInfo=" + this.bytesReserveInfo + ",}";
}
public EmojiZPlan(int i2, String str, int i3, int i4, long j2, String str2) {
this.actionName = "";
this.bytesReserveInfo = "";
this.actionId = i2;
this.actionName = str;
this.actionType = i3;
this.playerNumber = i4;
this.peerUid = j2;
this.bytesReserveInfo = str2;
}
}
| 1,416 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProViewerExt.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProViewerExt.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProViewerExt implements Serializable {
int fakeNum;
int realNum;
int rebotNum;
long serialVersionUID = 1;
public GProViewerExt() {
}
public int getFakeNum() {
return this.fakeNum;
}
public int getRealNum() {
return this.realNum;
}
public int getRebotNum() {
return this.rebotNum;
}
public String toString() {
return "GProViewerExt{fakeNum=" + this.fakeNum + ",realNum=" + this.realNum + ",rebotNum=" + this.rebotNum + ",}";
}
public GProViewerExt(int i2, int i3, int i4) {
this.fakeNum = i2;
this.realNum = i3;
this.rebotNum = i4;
}
}
| 793 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProPollingChannelState.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProPollingChannelState.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProPollingChannelState {
GProActiveChannelInfo activeChannelInfo;
GProAppChnnPreInfo appChannelPresence;
long channelId;
GProChannel channelInfo;
GProCreateGuildGuideInfo createGuildGuideInfo;
GProGlobalBanner guildGlobalBanner;
long guildId;
ArrayList<GProStickyChannel> guildStickyChannelList;
GProLiveRoomInfo liveChannelPresence;
GProOnlineMemberInfo onlineMemberInfo;
GProRecommendEssenceSvrRsp recommendEssence;
int source;
int type;
long updateTime;
GProChannelMemberInfos voiceChannelPresence;
GProChannelMemberInfos worldChannelInfo;
GProWorldChannelInfos worldChannelPresence;
public GProPollingChannelState() {
this.voiceChannelPresence = new GProChannelMemberInfos();
this.liveChannelPresence = new GProLiveRoomInfo();
this.appChannelPresence = new GProAppChnnPreInfo();
this.guildGlobalBanner = new GProGlobalBanner();
this.createGuildGuideInfo = new GProCreateGuildGuideInfo();
this.onlineMemberInfo = new GProOnlineMemberInfo();
this.guildStickyChannelList = new ArrayList<>();
this.worldChannelPresence = new GProWorldChannelInfos();
this.worldChannelInfo = new GProChannelMemberInfos();
this.recommendEssence = new GProRecommendEssenceSvrRsp();
this.activeChannelInfo = new GProActiveChannelInfo();
this.channelInfo = new GProChannel();
}
public GProActiveChannelInfo getActiveChannelInfo() {
return this.activeChannelInfo;
}
public GProAppChnnPreInfo getAppChannelPresence() {
return this.appChannelPresence;
}
public long getChannelId() {
return this.channelId;
}
public GProChannel getChannelInfo() {
return this.channelInfo;
}
public GProCreateGuildGuideInfo getCreateGuildGuideInfo() {
return this.createGuildGuideInfo;
}
public GProGlobalBanner getGuildGlobalBanner() {
return this.guildGlobalBanner;
}
public long getGuildId() {
return this.guildId;
}
public ArrayList<GProStickyChannel> getGuildStickyChannelList() {
return this.guildStickyChannelList;
}
public GProLiveRoomInfo getLiveChannelPresence() {
return this.liveChannelPresence;
}
public GProOnlineMemberInfo getOnlineMemberInfo() {
return this.onlineMemberInfo;
}
public GProRecommendEssenceSvrRsp getRecommendEssence() {
return this.recommendEssence;
}
public int getSource() {
return this.source;
}
public int getType() {
return this.type;
}
public long getUpdateTime() {
return this.updateTime;
}
public GProChannelMemberInfos getVoiceChannelPresence() {
return this.voiceChannelPresence;
}
public GProChannelMemberInfos getWorldChannelInfo() {
return this.worldChannelInfo;
}
public GProWorldChannelInfos getWorldChannelPresence() {
return this.worldChannelPresence;
}
public String toString() {
return "GProPollingChannelState{guildId=" + this.guildId + ",channelId=" + this.channelId + ",type=" + this.type + ",updateTime=" + this.updateTime + ",source=" + this.source + ",voiceChannelPresence=" + this.voiceChannelPresence + ",liveChannelPresence=" + this.liveChannelPresence + ",appChannelPresence=" + this.appChannelPresence + ",guildGlobalBanner=" + this.guildGlobalBanner + ",createGuildGuideInfo=" + this.createGuildGuideInfo + ",onlineMemberInfo=" + this.onlineMemberInfo + ",guildStickyChannelList=" + this.guildStickyChannelList + ",worldChannelPresence=" + this.worldChannelPresence + ",worldChannelInfo=" + this.worldChannelInfo + ",recommendEssence=" + this.recommendEssence + ",activeChannelInfo=" + this.activeChannelInfo + ",channelInfo=" + this.channelInfo + ",}";
}
public GProPollingChannelState(long j2, long j3, int i2, long j4, int i3, GProChannelMemberInfos gProChannelMemberInfos, GProLiveRoomInfo gProLiveRoomInfo, GProAppChnnPreInfo gProAppChnnPreInfo, GProGlobalBanner gProGlobalBanner, GProCreateGuildGuideInfo gProCreateGuildGuideInfo, GProOnlineMemberInfo gProOnlineMemberInfo, ArrayList<GProStickyChannel> arrayList, GProWorldChannelInfos gProWorldChannelInfos, GProChannelMemberInfos gProChannelMemberInfos2, GProRecommendEssenceSvrRsp gProRecommendEssenceSvrRsp, GProActiveChannelInfo gProActiveChannelInfo, GProChannel gProChannel) {
this.voiceChannelPresence = new GProChannelMemberInfos();
this.liveChannelPresence = new GProLiveRoomInfo();
this.appChannelPresence = new GProAppChnnPreInfo();
this.guildGlobalBanner = new GProGlobalBanner();
this.createGuildGuideInfo = new GProCreateGuildGuideInfo();
this.onlineMemberInfo = new GProOnlineMemberInfo();
this.guildStickyChannelList = new ArrayList<>();
this.worldChannelPresence = new GProWorldChannelInfos();
this.worldChannelInfo = new GProChannelMemberInfos();
this.recommendEssence = new GProRecommendEssenceSvrRsp();
this.activeChannelInfo = new GProActiveChannelInfo();
this.channelInfo = new GProChannel();
this.guildId = j2;
this.channelId = j3;
this.type = i2;
this.updateTime = j4;
this.source = i3;
this.voiceChannelPresence = gProChannelMemberInfos;
this.liveChannelPresence = gProLiveRoomInfo;
this.appChannelPresence = gProAppChnnPreInfo;
this.guildGlobalBanner = gProGlobalBanner;
this.createGuildGuideInfo = gProCreateGuildGuideInfo;
this.onlineMemberInfo = gProOnlineMemberInfo;
this.guildStickyChannelList = arrayList;
this.worldChannelPresence = gProWorldChannelInfos;
this.worldChannelInfo = gProChannelMemberInfos2;
this.recommendEssence = gProRecommendEssenceSvrRsp;
this.activeChannelInfo = gProActiveChannelInfo;
this.channelInfo = gProChannel;
}
}
| 6,101 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProClientPresence.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProClientPresence.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProClientPresence implements Serializable {
String bigIcon;
int clientId;
String clientName;
String details;
long endTimeStamp;
long expireTimeStamp;
long partyMax;
long partySize;
String role;
long serialVersionUID;
String smallIcon;
long startTimeStamp;
String state;
public GProClientPresence() {
this.serialVersionUID = 1L;
this.clientName = "";
this.bigIcon = "";
this.state = "";
this.details = "";
this.role = "";
this.smallIcon = "";
}
public String getBigIcon() {
return this.bigIcon;
}
public int getClientId() {
return this.clientId;
}
public String getClientName() {
return this.clientName;
}
public String getDetails() {
return this.details;
}
public long getEndTimeStamp() {
return this.endTimeStamp;
}
public long getExpireTimeStamp() {
return this.expireTimeStamp;
}
public long getPartyMax() {
return this.partyMax;
}
public long getPartySize() {
return this.partySize;
}
public String getRole() {
return this.role;
}
public String getSmallIcon() {
return this.smallIcon;
}
public long getStartTimeStamp() {
return this.startTimeStamp;
}
public String getState() {
return this.state;
}
public String toString() {
return "GProClientPresence{clientId=" + this.clientId + ",clientName=" + this.clientName + ",bigIcon=" + this.bigIcon + ",state=" + this.state + ",details=" + this.details + ",partySize=" + this.partySize + ",partyMax=" + this.partyMax + ",role=" + this.role + ",startTimeStamp=" + this.startTimeStamp + ",endTimeStamp=" + this.endTimeStamp + ",expireTimeStamp=" + this.expireTimeStamp + ",smallIcon=" + this.smallIcon + ",}";
}
public GProClientPresence(int i2, String str, String str2, String str3, String str4, long j2, long j3, String str5, long j4, long j5, long j6, String str6) {
this.serialVersionUID = 1L;
this.clientName = "";
this.bigIcon = "";
this.state = "";
this.details = "";
this.role = "";
this.smallIcon = "";
this.clientId = i2;
this.clientName = str;
this.bigIcon = str2;
this.state = str3;
this.details = str4;
this.partySize = j2;
this.partyMax = j3;
this.role = str5;
this.startTimeStamp = j4;
this.endTimeStamp = j5;
this.expireTimeStamp = j6;
this.smallIcon = str6;
}
}
| 2,757 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRecommendGuildState.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRecommendGuildState.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProRecommendGuildState implements Serializable {
String desc;
ArrayList<String> iconUrls;
long serialVersionUID;
int state;
public GProRecommendGuildState() {
this.serialVersionUID = 1L;
this.desc = "";
this.iconUrls = new ArrayList<>();
}
public String getDesc() {
return this.desc;
}
public ArrayList<String> getIconUrls() {
return this.iconUrls;
}
public int getState() {
return this.state;
}
public String toString() {
return "GProRecommendGuildState{state=" + this.state + ",desc=" + this.desc + ",iconUrls=" + this.iconUrls + ",}";
}
public GProRecommendGuildState(int i2, String str, ArrayList<String> arrayList) {
this.serialVersionUID = 1L;
this.desc = "";
this.iconUrls = new ArrayList<>();
this.state = i2;
this.desc = str;
this.iconUrls = arrayList;
}
}
| 1,100 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
KickedType.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/KickedType.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public enum KickedType {
KKICKBYMULTIINST,
KKICKBYMOBILE,
KKICKBYPASSWORDCHANGE,
KKCIKBYLOWVERSION
}
| 222 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProVoiceSmobaGameRoomStateInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProVoiceSmobaGameRoomStateInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
/* loaded from: classes2.dex */
public final class GProVoiceSmobaGameRoomStateInfo implements Serializable {
GProVoiceSmobaGameCaptainUserInfo captainInfo;
long captainTinyId;
long currentNum;
GProVoiceSmobaGameGameStaticInfo gameInfo;
long gameStartTime;
long roomId;
int roomState;
int roomType;
long serialVersionUID;
public GProVoiceSmobaGameRoomStateInfo() {
this.serialVersionUID = 1L;
this.gameInfo = new GProVoiceSmobaGameGameStaticInfo();
this.captainInfo = new GProVoiceSmobaGameCaptainUserInfo();
}
public GProVoiceSmobaGameCaptainUserInfo getCaptainInfo() {
return this.captainInfo;
}
public long getCaptainTinyId() {
return this.captainTinyId;
}
public long getCurrentNum() {
return this.currentNum;
}
public GProVoiceSmobaGameGameStaticInfo getGameInfo() {
return this.gameInfo;
}
public long getGameStartTime() {
return this.gameStartTime;
}
public long getRoomId() {
return this.roomId;
}
public int getRoomState() {
return this.roomState;
}
public int getRoomType() {
return this.roomType;
}
public String toString() {
return "GProVoiceSmobaGameRoomStateInfo{roomId=" + this.roomId + ",roomType=" + this.roomType + ",gameInfo=" + this.gameInfo + ",roomState=" + this.roomState + ",gameStartTime=" + this.gameStartTime + ",currentNum=" + this.currentNum + ",captainTinyId=" + this.captainTinyId + ",captainInfo=" + this.captainInfo + ",}";
}
public GProVoiceSmobaGameRoomStateInfo(long j2, int i2, GProVoiceSmobaGameGameStaticInfo gProVoiceSmobaGameGameStaticInfo, int i3, long j3, long j4, long j5, GProVoiceSmobaGameCaptainUserInfo gProVoiceSmobaGameCaptainUserInfo) {
this.serialVersionUID = 1L;
this.gameInfo = new GProVoiceSmobaGameGameStaticInfo();
this.captainInfo = new GProVoiceSmobaGameCaptainUserInfo();
this.roomId = j2;
this.roomType = i2;
this.gameInfo = gProVoiceSmobaGameGameStaticInfo;
this.roomState = i3;
this.gameStartTime = j3;
this.currentNum = j4;
this.captainTinyId = j5;
this.captainInfo = gProVoiceSmobaGameCaptainUserInfo;
}
}
| 2,369 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProAnchorEnterRoomReq.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProAnchorEnterRoomReq.java | package com.tencent.qqnt.kernel.nativeinterface;
/* loaded from: classes2.dex */
public final class GProAnchorEnterRoomReq {
String extData;
String machine;
Long openLiveType;
String programId;
Long roomId;
String source;
public GProAnchorEnterRoomReq() {
}
public String getExtData() {
return this.extData;
}
public String getMachine() {
return this.machine;
}
public Long getOpenLiveType() {
return this.openLiveType;
}
public String getProgramId() {
return this.programId;
}
public Long getRoomId() {
return this.roomId;
}
public String getSource() {
return this.source;
}
public String toString() {
return "GProAnchorEnterRoomReq{roomId=" + this.roomId + ",source=" + this.source + ",programId=" + this.programId + ",machine=" + this.machine + ",openLiveType=" + this.openLiveType + ",extData=" + this.extData + ",}";
}
public GProAnchorEnterRoomReq(Long l2, String str, String str2, String str3, Long l3, String str4) {
this.roomId = l2;
this.source = str;
this.programId = str2;
this.machine = str3;
this.openLiveType = l3;
this.extData = str4;
}
}
| 1,265 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
ChatCacheInfo.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/ChatCacheInfo.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class ChatCacheInfo {
long chatSize;
long chatTime;
int chatType;
String nickName;
String remarkName;
String uid;
long uin;
public ChatCacheInfo() {
this.uid = "";
this.remarkName = "";
this.nickName = "";
}
public long getChatSize() {
return this.chatSize;
}
public long getChatTime() {
return this.chatTime;
}
public int getChatType() {
return this.chatType;
}
public String getNickName() {
return this.nickName;
}
public String getRemarkName() {
return this.remarkName;
}
public String getUid() {
return this.uid;
}
public long getUin() {
return this.uin;
}
public String toString() {
return "ChatCacheInfo{chatSize=" + this.chatSize + ",chatTime=" + this.chatTime + ",uid=" + this.uid + ",uin=" + this.uin + ",remarkName=" + this.remarkName + ",nickName=" + this.nickName + ",chatType=" + this.chatType + ",}";
}
public ChatCacheInfo(long j2, long j3, String str, long j4, String str2, String str3, int i2) {
this.uid = "";
this.remarkName = "";
this.nickName = "";
this.chatSize = j2;
this.chatTime = j3;
this.uid = str;
this.uin = j4;
this.remarkName = str2;
this.nickName = str3;
this.chatType = i2;
}
}
| 1,515 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GProRecommendV2TracksBlockList.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GProRecommendV2TracksBlockList.java | package com.tencent.qqnt.kernel.nativeinterface;
import java.io.Serializable;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public final class GProRecommendV2TracksBlockList implements Serializable {
String blockName;
ArrayList<GProRecommendV2Channel> channelList;
long serialVersionUID;
public GProRecommendV2TracksBlockList() {
this.serialVersionUID = 1L;
this.blockName = "";
this.channelList = new ArrayList<>();
}
public String getBlockName() {
return this.blockName;
}
public ArrayList<GProRecommendV2Channel> getChannelList() {
return this.channelList;
}
public String toString() {
return "GProRecommendV2TracksBlockList{blockName=" + this.blockName + ",channelList=" + this.channelList + ",}";
}
public GProRecommendV2TracksBlockList(String str, ArrayList<GProRecommendV2Channel> arrayList) {
this.serialVersionUID = 1L;
this.blockName = "";
this.channelList = new ArrayList<>();
this.blockName = str;
this.channelList = arrayList;
}
}
| 1,105 | Java | .java | djkcyl/Shamrock | 106 | 66 | 1 | 2023-10-20T10:43:47Z | 2023-10-24T04:30:56Z |
GroupNotifyOperateMsg.java | /FileExtraction/Java_unseen/djkcyl_Shamrock/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupNotifyOperateMsg.java | package com.tencent.qqnt.kernel.nativeinterface;
/* compiled from: P */
/* loaded from: classes2.dex */
public final class GroupNotifyOperateMsg implements IKernelModel {
GroupNotifyOperateType operateType;
GroupNotifyTargetMsg targetMsg;
public GroupNotifyOperateMsg() {
this.operateType = GroupNotifyOperateType.values()[0];
this.targetMsg = new GroupNotifyTargetMsg();
}
public GroupNotifyOperateType getOperateType() {
return this.operateType;
}
public GroupNotifyTargetMsg getTargetMsg() {
return this.targetMsg;
}
public void setOperateType(GroupNotifyOperateType groupNotifyOperateType) {
this.operateType = groupNotifyOperateType;
}
public void setTargetMsg(GroupNotifyTargetMsg groupNotifyTargetMsg) {
this.targetMsg = groupNotifyTargetMsg;
}
public String toString() {
return "GroupNotifyOperateMsg{operateType=" + this.operateType + ",targetMsg=" + this.targetMsg + ",}";
}
public GroupNotifyOperateMsg(GroupNotifyOperateType groupNotifyOperateType, GroupNotifyTargetMsg groupNotifyTargetMsg) {
this.operateType = GroupNotifyOperateType.values()[0];
this.targetMsg = new GroupNotifyTargetMsg();
this.operateType = groupNotifyOperateType;
this.targetMsg = groupNotifyTargetMsg;
}
}
| 1,352 | 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.