REST Resource: conferenceRecords.participants.participantSessions
資源:PlayerSession
這是指使用者透過裝置加入會議時,每次的個別加入或離開工作階段。請注意,使用者參加會議時,系統會指派新的專屬 ID。也就是說,如果使用者多次透過同一部裝置加入聊天室,系統會將他們指派不同的 ID,也會視為不同的參與者工作階段。
JSON 表示法 |
{
"name": string,
"startTime": string,
"endTime": string
} |
欄位 |
name |
string
ID。工作階段 ID。
|
startTime |
string (Timestamp format)
僅供輸出。使用者工作階段開始時的時間戳記。
|
endTime |
string (Timestamp format)
僅供輸出。使用者工作階段結束時的時間戳記。如果使用者工作階段尚未結束,則未設定。
|
方法 |
|
依參與者工作階段 ID 取得參與者工作階段。 |
|
列出會議記錄中參與者的參與者工作階段。 |
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-08-29 (世界標準時間)。
[null,null,["上次更新時間:2024-08-29 (世界標準時間)。"],[[["A ParticipantSession represents a single instance of a user joining or leaving a conference, with each session assigned a unique ID, even if the user rejoins from the same device."],["ParticipantSession data includes the session ID (`name`), start time (`startTime`), and end time (`endTime`) of the session, formatted as Timestamps."],["Google Meet API provides methods to retrieve a specific participant session or list all sessions for a participant within a conference record."]]],["ParticipantSession represents each unique user join/leave of a conference from a device, assigning a new ID per join. Each session has a `name` (session ID), `startTime`, and `endTime` (if ended). The available methods are `get`, which retrieves a session by ID, and `list`, which lists all sessions for a participant within a conference record. The data is structured in JSON, and the timestamps use a specific format.\n"]]