GC-Proto/proto/SocialDetail.proto

39 lines
1015 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
2022-11-06 15:30:21 +03:00
import "Birthday.proto";
import "FriendOnlineState.proto";
2023-01-28 17:00:48 +03:00
import "FriendEnterHomeOption.proto";
2022-11-06 15:30:21 +03:00
import "ProfilePicture.proto";
import "SocialShowAvatarInfo.proto";
message SocialDetail {
2023-01-28 17:00:48 +03:00
uint32 uid = 1;
string nickname = 2;
uint32 level = 3;
uint32 avatarId = 4;
string signature = 5;
Birthday birthday = 6;
uint32 worldLevel = 7;
repeated uint32 reservedList = 8;
FriendOnlineState onlineState = 9;
uint32 param = 10;
bool isFriend = 11;
bool isMpModeAvailable = 12;
string onlineId = 13;
uint32 nameCardId = 14;
bool isInBlacklist = 15;
bool isChatNoDisturb = 16;
string remarkName = 17;
uint32 finishAchievementNum = 18;
uint32 towerFloorIndex = 19;
uint32 towerLevelIndex = 20;
bool isShowAvatar = 21;
repeated SocialShowAvatarInfo showAvatarInfoList = 22;
repeated uint32 showNameCardIdList = 23;
FriendEnterHomeOption friendEnterHomeOption = 24;
ProfilePicture profilePicture = 25;
string gpbkdlaodce = 26;
2022-11-06 15:30:21 +03:00
}