REST Resource: conferenceRecords.participants.participantSessions
リソース: participantSession
ユーザーがデバイスから会議に参加する際の、個々の参加または退出のセッションを指します。ユーザーが会議に参加するたびに、新しい一意の ID が割り当てられます。つまり、ユーザーが同じデバイスからスペースに複数回参加した場合、異なる ID が割り当てられ、異なる参加者セッションとして扱われます。
JSON 表現 |
{
"name": string,
"startTime": string,
"endTime": string
} |
フィールド |
name |
string
ID。セッション ID。
|
startTime |
string (Timestamp format)
出力専用。ユーザー セッション開始時のタイムスタンプ。
|
endTime |
string (Timestamp format)
出力専用。ユーザー セッションが終了したときのタイムスタンプ。ユーザー セッションが終了していない場合は未設定にします。
|
メソッド |
|
参加者セッション ID で参加者セッションを取得します。 |
|
会議レコードの参加者の参加者セッションを一覧表示します。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-08-29 UTC。
[null,null,["最終更新日 2024-08-29 UTC。"],[[["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"]]