udp_experimental_recorder/MumbleServer/LogEntry.py
George 7b93a4fce9 feat:
--ADDED MUMBLE server cap
2026-05-21 17:14:58 +05:30

40 lines
775 B
Python

# Copyright (c) ZeroC, Inc.
# slice2py version 3.8.1
from __future__ import annotations
import IcePy
from dataclasses import dataclass
@dataclass(order=True, unsafe_hash=True)
class LogEntry:
"""
A entry in the log.
Attributes
----------
timestamp : int
Timestamp in UNIX time_t
txt : str
The log message.
Notes
-----
The Slice compiler generated this dataclass from Slice struct ``::MumbleServer::LogEntry``.
"""
timestamp: int = 0
txt: str = ""
_MumbleServer_LogEntry_t = IcePy.defineStruct(
"::MumbleServer::LogEntry",
LogEntry,
(),
(
("timestamp", (), IcePy._t_int),
("txt", (), IcePy._t_string)
))
__all__ = ["LogEntry", "_MumbleServer_LogEntry_t"]