We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d3ffa commit 5a9a6a4Copy full SHA for 5a9a6a4
livekit-rtc/livekit/rtc/participant.py
@@ -65,7 +65,14 @@ class Participant:
65
def __init__(self, owned_info: proto_participant.OwnedParticipant) -> None:
66
self._info = owned_info.info
67
self._ffi_handle = FfiHandle(owned_info.handle.id)
68
- self.track_publications: dict[str, TrackPublication] = {}
+ self._track_publications: dict[str, TrackPublication] = {}
69
+
70
+ @property
71
+ def track_publications(self) -> dict[str, TrackPublication]:
72
+ """
73
+ A dictionary of track publications associated with the participant.
74
75
+ return self._track_publications
76
77
@property
78
def sid(self) -> str:
0 commit comments