REST Resource: conferenceRecords.participants.participantSessions
资源:PARTICIPANTSession
是指用户通过设备加入会议时的每个唯一身份加入或退出会话。请注意,每次用户加入会议时,系统都会分配新的唯一 ID。这意味着,如果用户通过同一设备多次加入聊天室,系统会为其分配不同的 ID,也会被视为不同的参与者会话。
JSON 表示法 |
{
"name": string,
"startTime": string,
"endTime": string
} |
字段 |
name |
string
标识符。会话 ID。
|
startTime |
string (Timestamp format)
仅限输出。用户会话启动时的时间戳。
|
endTime |
string (Timestamp format)
仅限输出。用户会话结束时的时间戳。如果用户会话尚未结束,则不设置此政策。
|
方法 |
|
根据参与者会话 ID 获取参与者会话。 |
|
列出会议记录中某个参与者的会话。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-29。
[null,null,["最后更新时间 (UTC):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"]]