REST Resource: conferenceRecords.participants
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
资源:参与者
JSON 表示法 |
{
"name": string,
"earliestStartTime": string,
"latestEndTime": string,
// Union field user can be only one of the following:
"signedinUser": {
object (SignedinUser )
},
"anonymousUser": {
object (AnonymousUser )
},
"phoneUser": {
object (PhoneUser )
}
// End of list of possible types for union field user .
} |
字段 |
name |
string
仅限输出。参与者的资源名称。格式:conferenceRecords/{conferenceRecord}/participants/{participant}
|
earliestStartTime |
string (Timestamp format)
仅限输出。参与者首次加入会议的时间。
|
latestEndTime |
string (Timestamp format)
仅限输出。参与者上次退出会议的时间。如果会议正在进行,此字段可以为 null。
|
联合字段 user 。 user 只能是下列其中一项:
|
signedinUser |
object (SignedinUser )
已登录的用户。
|
anonymousUser |
object (AnonymousUser )
匿名用户。
|
phoneUser |
object (PhoneUser )
用户通过手机拨打电话。
|
SignedinUser
已登录的用户可以是:a) 通过个人计算机、移动设备或通过伴侣模式加入会议的个人。b) 会议室设备使用的机器人账号。
JSON 表示法 |
{
"user": string,
"displayName": string
} |
字段 |
user |
string
仅限输出。用户的唯一 ID。可与 Admin SDK API 和 People API 互操作。格式:users/{user}
|
displayName |
string
仅限输出。对于个人设备,此字段是用户的名字和姓氏。对于机器人账号,设备名称是管理员指定的设备名称。例如,“Altostrat Room”。
|
AnonymousUser
以匿名身份加入会议的用户(即未登录 Google 账号)。
JSON 表示法 |
{
"displayName": string
} |
字段 |
displayName |
string
仅限输出。用户在匿名加入会议时提供的名称。
|
PhoneUser
用户通过电话拨号加入会议,但由于用户未使用 Google 账号登录,因此其身份不明。
JSON 表示法 |
{
"displayName": string
} |
字段 |
displayName |
string
仅限输出。部分隐去用户的通话电话号码。
|
方法 |
|
根据参与者 ID 获取参与者。 |
|
列出会议记录中的参与者。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[],[],null,["# REST Resource: conferenceRecords.participants\n\n- [Resource: Participant](#Participant)\n - [JSON representation](#Participant.SCHEMA_REPRESENTATION)\n- [SignedinUser](#SignedinUser)\n - [JSON representation](#SignedinUser.SCHEMA_REPRESENTATION)\n- [AnonymousUser](#AnonymousUser)\n - [JSON representation](#AnonymousUser.SCHEMA_REPRESENTATION)\n- [PhoneUser](#PhoneUser)\n - [JSON representation](#PhoneUser.SCHEMA_REPRESENTATION)\n- [Methods](#METHODS_SUMMARY)\n\nResource: Participant\n---------------------\n\nUser who attended or is attending a conference.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"earliestStartTime\": string, \"latestEndTime\": string, // Union field `user` can be only one of the following: \"signedinUser\": { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#SignedinUser) }, \"anonymousUser\": { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#AnonymousUser) }, \"phoneUser\": { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#PhoneUser) } // End of list of possible types for union field `user`. } ``` |\n\n| Fields ||\n|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` Output only. Resource name of the participant. Format: `conferenceRecords/{conferenceRecord}/participants/{participant}` |\n| `earliestStartTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. Time when the participant first joined the meeting. |\n| `latestEndTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. Time when the participant left the meeting for the last time. This can be null if it's an active meeting. |\n| Union field `user`. `user` can be only one of the following: ||\n| `signedinUser` | `object (`[SignedinUser](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#SignedinUser)`)` Signed-in user. |\n| `anonymousUser` | `object (`[AnonymousUser](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#AnonymousUser)`)` Anonymous user. |\n| `phoneUser` | `object (`[PhoneUser](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#PhoneUser)`)` User calling from their phone. |\n\nSignedinUser\n------------\n\nA signed-in user can be: a) An individual joining from a personal computer, mobile device, or through companion mode. b) A robot account used by conference room devices.\n\n| JSON representation |\n|---------------------------------------------------|\n| ``` { \"user\": string, \"displayName\": string } ``` |\n\n| Fields ||\n|---------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `user` | `string` Output only. Unique ID for the user. Interoperable with Admin SDK API and People API. Format: `users/{user}` |\n| `displayName` | `string` Output only. For a personal device, it's the user's first name and last name. For a robot account, it's the administrator-specified device name. For example, \"Altostrat Room\". |\n\nAnonymousUser\n-------------\n\nUser who joins anonymously (meaning not signed into a Google Account).\n\n| JSON representation |\n|-----------------------------------|\n| ``` { \"displayName\": string } ``` |\n\n| Fields ||\n|---------------|-----------------------------------------------------------------------------------|\n| `displayName` | `string` Output only. User provided name when they join a conference anonymously. |\n\nPhoneUser\n---------\n\nUser dialing in from a phone where the user's identity is unknown because they haven't signed in with a Google Account.\n\n| JSON representation |\n|-----------------------------------|\n| ``` { \"displayName\": string } ``` |\n\n| Fields ||\n|---------------|----------------------------------------------------------------------------|\n| `displayName` | `string` Output only. Partially redacted user's phone number when calling. |\n\n| Methods ------- ||\n|---------------------------------------------------------------------------------------|------------------------------------------------|\n| ### [get](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants/get) | Gets a participant by participant ID. |\n| ### [list](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants/list) | Lists the participants in a conference record. |"]]