Files
csdemo/Protobufs/webui/service_clanchatrooms.proto
2024-09-15 05:09:15 +02:00

26 lines
810 B
Protocol Buffer

import "common.proto";
message CClanChatRooms_GetClanChatRoomInfo_Request {
optional fixed64 steamid = 1;
optional bool autocreate = 2 [default = true];
}
message CClanChatRooms_GetClanChatRoomInfo_Response {
optional .CChatRoom_GetChatRoomGroupSummary_Response chat_group_summary = 1;
}
message CClanChatRooms_SetClanChatRoomPrivate_Request {
optional fixed64 steamid = 1;
optional bool chat_room_private = 2;
}
message CClanChatRooms_SetClanChatRoomPrivate_Response {
optional bool chat_room_private = 1;
}
service ClanChatRooms {
rpc GetClanChatRoomInfo (.CClanChatRooms_GetClanChatRoomInfo_Request) returns (.CClanChatRooms_GetClanChatRoomInfo_Response);
rpc SetClanChatRoomPrivate (.CClanChatRooms_SetClanChatRoomPrivate_Request) returns (.CClanChatRooms_SetClanChatRoomPrivate_Response);
}