Пример #1
0
class CVoiceChatAllMembersStatusNotification(betterproto.Message):
    voice_chatid: int = betterproto.fixed64_field(1)
    users: List["CVoiceChatUserVoiceStatusNotification"] = betterproto.message_field(2)
Пример #2
0
class SetClanChatRoomPrivateRequest(betterproto.Message):
    steamid: int = betterproto.fixed64_field(1)
    chat_room_private: bool = betterproto.bool_field(2)
Пример #3
0
class CPlayerGetMiniProfileBackgroundRequest(betterproto.Message):
    steamid: int = betterproto.fixed64_field(1)
    language: str = betterproto.string_field(2)
Пример #4
0
class InviteFriendToChatRoomGroupRequest(betterproto.Message):
    chat_group_id: int = betterproto.uint64_field(1)
    steamid: int = betterproto.fixed64_field(2)
    chat_id: int = betterproto.uint64_field(3)
    skip_friendsui_check: bool = betterproto.bool_field(4)
Пример #5
0
class GetInviteLinksForGroupResponseLinkInfo(betterproto.Message):
    invite_code: str = betterproto.string_field(1)
    steamid_creator: int = betterproto.fixed64_field(2)
    time_expires: int = betterproto.uint32_field(3)
    chat_id: int = betterproto.uint64_field(4)
Пример #6
0
class SetUserBanStateRequest(betterproto.Message):
    chat_group_id: int = betterproto.uint64_field(1)
    steamid: int = betterproto.fixed64_field(2)
    ban_state: bool = betterproto.bool_field(3)
Пример #7
0
class GetRolesForUserRequest(betterproto.Message):
    chat_group_id: int = betterproto.uint64_field(1)
    steamid: int = betterproto.fixed64_field(3)
Пример #8
0
class CSteamTvChatBan(betterproto.Message):
    issuer_steamid: int = betterproto.fixed64_field(1)
    chatter_steamid: int = betterproto.fixed64_field(2)
    time_expires: str = betterproto.string_field(3)
    permanent: bool = betterproto.bool_field(4)
    name: str = betterproto.string_field(5)
Пример #9
0
class CSteamTvAddChatBanRequest(betterproto.Message):
    broadcast_channel_id: int = betterproto.fixed64_field(1)
    chatter_steamid: int = betterproto.fixed64_field(2)
    duration: int = betterproto.uint32_field(3)
    permanent: bool = betterproto.bool_field(4)
    undo: bool = betterproto.bool_field(5)
Пример #10
0
class CSteamTvGetBroadcastChannelIdResponse(betterproto.Message):
    broadcast_channel_id: int = betterproto.fixed64_field(1)
    unique_name: str = betterproto.string_field(2)
    steamid: int = betterproto.fixed64_field(3)
Пример #11
0
class CSteamTvGetBroadcastChannelBroadcastersResponseBroadcaster(betterproto.Message):
    steamid: int = betterproto.fixed64_field(1)
    name: str = betterproto.string_field(2)
    rtmp_token: str = betterproto.string_field(3)
Пример #12
0
class CSteamTvCreateBroadcastChannelResponse(betterproto.Message):
    broadcast_channel_id: int = betterproto.fixed64_field(1)
Пример #13
0
class CVoiceChatVoiceChatEndedNotification(betterproto.Message):
    voice_chatid: int = betterproto.fixed64_field(1)
    one_on_one_steamid_lower: int = betterproto.fixed64_field(2)
    one_on_one_steamid_higher: int = betterproto.fixed64_field(3)
    chatid: int = betterproto.uint64_field(4)
    chat_group_id: int = betterproto.uint64_field(5)
Пример #14
0
class CVoiceChatUploadClientVoiceChatLogsRequest(betterproto.Message):
    voice_chatid: int = betterproto.fixed64_field(1)
    client_voice_logs_new_lines: str = betterproto.string_field(2)
Пример #15
0
class PartyBeacon(betterproto.Message):
    app_id: int = betterproto.uint32_field(1)
    steamid_owner: int = betterproto.fixed64_field(2)
    beacon_id: int = betterproto.fixed64_field(3)
    game_metadata: str = betterproto.string_field(4)
Пример #16
0
class CSteamTvAddChatModeratorRequest(betterproto.Message):
    broadcast_channel_id: int = betterproto.fixed64_field(1)
    moderator_steamid: int = betterproto.fixed64_field(2)
    undo: bool = betterproto.bool_field(3)
Пример #17
0
class KickUserRequest(betterproto.Message):
    chat_group_id: int = betterproto.uint64_field(1)
    steamid: int = betterproto.fixed64_field(2)
    expiration: int = betterproto.int32_field(3)
Пример #18
0
class CSteamTvGetChatModeratorsRequest(betterproto.Message):
    broadcast_channel_id: int = betterproto.fixed64_field(1)
Пример #19
0
class RevokeInviteRequest(betterproto.Message):
    chat_group_id: int = betterproto.uint64_field(1)
    steamid: int = betterproto.fixed64_field(2)
Пример #20
0
class CSteamTvChatModerator(betterproto.Message):
    steamid: int = betterproto.fixed64_field(1)
    name: str = betterproto.string_field(2)
Пример #21
0
class DeleteRoleFromUserRequest(betterproto.Message):
    chat_group_id: int = betterproto.uint64_field(1)
    role_id: int = betterproto.uint64_field(3)
    steamid: int = betterproto.fixed64_field(4)
Пример #22
0
class CSteamTvJoinChatRequest(betterproto.Message):
    broadcast_channel_id: int = betterproto.fixed64_field(1)
Пример #23
0
class GetInviteInfoRequest(betterproto.Message):
    steamid_invitee: int = betterproto.fixed64_field(1)
    chat_group_id: int = betterproto.uint64_field(2)
    chat_id: int = betterproto.uint64_field(3)
    invite_code: str = betterproto.string_field(4)
Пример #24
0
class CSteamTvJoinChatResponse(betterproto.Message):
    chat_id: int = betterproto.fixed64_field(1)
    view_url_template: str = betterproto.string_field(2)
    flair_group_ids: List[int] = betterproto.uint64_field(3)
Пример #25
0
class GetClanChatRoomInfoRequest(betterproto.Message):
    steamid: int = betterproto.fixed64_field(1)
    autocreate: bool = betterproto.bool_field(2)
Пример #26
0
class CClanRespondToClanInviteRequest(betterproto.Message):
    steamid: int = betterproto.fixed64_field(1)
    accept: bool = betterproto.bool_field(2)
Пример #27
0
class CPlayerGetFriendsAppsActivityResponseFriendPlayTime(betterproto.Message):
    steamid: int = betterproto.fixed64_field(1)
    minutes_played_this_week: int = betterproto.uint32_field(2)
    minutes_played_two_weeks: int = betterproto.uint32_field(3)
    minutes_played_forever: int = betterproto.uint32_field(4)
    event_count: int = betterproto.uint32_field(5)
Пример #28
0
class CCommunityPostCommentToThreadResponse(betterproto.Message):
    gidcomment: int = betterproto.fixed64_field(1)
    commentthreadid: int = betterproto.fixed64_field(2)
    count: int = betterproto.int32_field(3)
    upvotes: int = betterproto.int32_field(4)
Пример #29
0
class CPlayerGetAvatarFrameRequest(betterproto.Message):
    steamid: int = betterproto.fixed64_field(1)
    language: str = betterproto.string_field(2)
Пример #30
0
class CVoiceChatLeaveOneOnOneChatRequest(betterproto.Message):
    steamid_partner: int = betterproto.fixed64_field(1)
    voice_chatid: int = betterproto.fixed64_field(2)