|
@@ -116,4 +116,67 @@ internal class GetTroopMemberListReq(
|
|
@SerialId(5) val reqType: Long? = null,
|
|
@SerialId(5) val reqType: Long? = null,
|
|
@SerialId(6) val getListAppointTime: Long? = null,
|
|
@SerialId(6) val getListAppointTime: Long? = null,
|
|
@SerialId(7) val richCardNameVer: Byte? = null
|
|
@SerialId(7) val richCardNameVer: Byte? = null
|
|
|
|
+) : JceStruct
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+@Serializable
|
|
|
|
+internal class GetTroopMemberListResp(
|
|
|
|
+ @SerialId(0) val uin: Long,
|
|
|
|
+ @SerialId(1) val groupCode: Long,
|
|
|
|
+ @SerialId(2) val groupUin: Long,
|
|
|
|
+ @SerialId(3) val vecTroopMember: List<stTroopMemberInfo>,
|
|
|
|
+ @SerialId(4) val nextUin: Long,
|
|
|
|
+ @SerialId(5) val result: Int,
|
|
|
|
+ @SerialId(6) val errorCode: Short? = null,
|
|
|
|
+ @SerialId(7) val officeMode: Long? = null,
|
|
|
|
+ @SerialId(8) val nextGetTime: Long? = null
|
|
|
|
+) : JceStruct
|
|
|
|
+
|
|
|
|
+@Serializable
|
|
|
|
+internal class stTroopMemberInfo(
|
|
|
|
+ @SerialId(0) val memberUin: Long,
|
|
|
|
+ @SerialId(1) val faceId: Short,
|
|
|
|
+ @SerialId(2) val age: Byte,
|
|
|
|
+ @SerialId(3) val gender: Byte,
|
|
|
|
+ @SerialId(4) val nick: String = "",
|
|
|
|
+ @SerialId(5) val status: Byte = 20,
|
|
|
|
+ @SerialId(6) val sShowName: String? = "",
|
|
|
|
+ @SerialId(8) val sName: String? = "",
|
|
|
|
+ @SerialId(9) val cGender: Byte? = null,
|
|
|
|
+ @SerialId(10) val sPhone: String? = "",
|
|
|
|
+ @SerialId(11) val sEmail: String? = "",
|
|
|
|
+ @SerialId(12) val sMemo: String? = "",
|
|
|
|
+ @SerialId(13) val autoRemark: String? = "",
|
|
|
|
+ @SerialId(14) val dwMemberLevel: Long? = null,
|
|
|
|
+ @SerialId(15) val dwJoinTime: Long? = null,
|
|
|
|
+ @SerialId(16) val dwLastSpeakTime: Long? = null,
|
|
|
|
+ @SerialId(17) val dwCreditLevel: Long? = null,
|
|
|
|
+ @SerialId(18) val dwFlag: Long? = null,
|
|
|
|
+ @SerialId(19) val dwFlagExt: Long? = null,
|
|
|
|
+ @SerialId(20) val dwPoint: Long? = null,
|
|
|
|
+ @SerialId(21) val concerned: Byte? = null,
|
|
|
|
+ @SerialId(22) val shielded: Byte? = null,
|
|
|
|
+ @SerialId(23) val sSpecialTitle: String? = "",
|
|
|
|
+ @SerialId(24) val dwSpecialTitleExpireTime: Long? = null,
|
|
|
|
+ @SerialId(25) val job: String? = "",
|
|
|
|
+ @SerialId(26) val apolloFlag: Byte? = null,
|
|
|
|
+ @SerialId(27) val dwApolloTimestamp: Long? = null,
|
|
|
|
+ @SerialId(28) val dwGlobalGroupLevel: Long? = null,
|
|
|
|
+ @SerialId(29) val dwTitleId: Long? = null,
|
|
|
|
+ @SerialId(30) val dwShutupTimestap: Long? = null,
|
|
|
|
+ @SerialId(31) val dwGlobalGroupPoint: Long? = null,
|
|
|
|
+ @SerialId(32) val qzusrinfo: QzoneUserInfo? = null,
|
|
|
|
+ @SerialId(33) val richCardNameVer: Byte? = null,
|
|
|
|
+ @SerialId(34) val dwVipType: Long? = null,
|
|
|
|
+ @SerialId(35) val dwVipLevel: Long? = null,
|
|
|
|
+ @SerialId(36) val dwBigClubLevel: Long? = null,
|
|
|
|
+ @SerialId(37) val dwBigClubFlag: Long? = null,
|
|
|
|
+ @SerialId(38) val dwNameplate: Long? = null,
|
|
|
|
+ @SerialId(39) val vecGroupHonor: ByteArray? = null
|
|
|
|
+) : JceStruct
|
|
|
|
+
|
|
|
|
+@Serializable
|
|
|
|
+internal class QzoneUserInfo(
|
|
|
|
+ @SerialId(0) val eStarState: Int? = null,
|
|
|
|
+ @SerialId(1) val extendInfo: Map<String, String>? = null
|
|
) : JceStruct
|
|
) : JceStruct
|