REST Resource: conferenceRecords.transcripts
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
资源:转写
会议生成的转写内容的元数据。是指用户在会议期间语音的 ASR(自动语音识别)结果。
JSON 表示法 |
{
"name": string,
"state": enum (State ),
"startTime": string,
"endTime": string,
// Union field destination can be only one of the following:
"docsDestination": {
object (DocsDestination )
}
// End of list of possible types for union field destination .
} |
字段 |
name |
string
仅限输出。转写内容的资源名称。格式:conferenceRecords/{conferenceRecord}/transcripts/{transcript} ,其中 {transcript} 是对会议的每个唯一转写会话的 1 对 1 映射。
|
state |
enum (State )
仅限输出。当前状态。
|
startTime |
string (Timestamp format)
仅限输出。转写开始的时间戳。
|
endTime |
string (Timestamp format)
仅限输出。转写停止时的时间戳。
|
联合字段 destination 。 destination 只能是下列其中一项:
|
docsDestination |
object (DocsDestination )
仅限输出。Google 文档转写内容的保存位置。
|
DocsDestination
JSON 表示法 |
{
"document": string,
"exportUri": string
} |
州
枚举 |
STATE_UNSPECIFIED |
默认值,从不使用。 |
STARTED |
已开始一个有效的转写会话。 |
ENDED |
此转写会话已结束,但转写文件尚未生成。 |
FILE_GENERATED |
转写文件已生成,可以下载了。 |
方法 |
|
根据转写内容 ID 获取转写内容。 |
|
列出会议记录中的一组转写内容。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[],[],null,["# REST Resource: conferenceRecords.transcripts\n\n- [Resource: Transcript](#Transcript)\n - [JSON representation](#Transcript.SCHEMA_REPRESENTATION)\n- [DocsDestination](#DocsDestination)\n - [JSON representation](#DocsDestination.SCHEMA_REPRESENTATION)\n- [State](#State)\n- [Methods](#METHODS_SUMMARY)\n\nResource: Transcript\n--------------------\n\nMetadata for a transcript generated from a conference. It refers to the ASR (Automatic Speech Recognition) result of user's speech during the conference.\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"state\": enum (/workspace/meet/api/reference/rest/v2/conferenceRecords.transcripts#State), \"startTime\": string, \"endTime\": string, // Union field `destination` can be only one of the following: \"docsDestination\": { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.transcripts#DocsDestination) } // End of list of possible types for union field `destination`. } ``` |\n\n| Fields ||\n|-------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` Output only. Resource name of the transcript. Format: `conferenceRecords/{conferenceRecord}/transcripts/{transcript}`, where `{transcript}` is a 1:1 mapping to each unique transcription session of the conference. |\n| `state` | `enum (`[State](/workspace/meet/api/reference/rest/v2/conferenceRecords.transcripts#State)`)` Output only. Current state. |\n| `startTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. Timestamp when the transcript started. |\n| `endTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. Timestamp when the transcript stopped. |\n| Union field `destination`. `destination` can be only one of the following: ||\n| `docsDestination` | `object (`[DocsDestination](/workspace/meet/api/reference/rest/v2/conferenceRecords.transcripts#DocsDestination)`)` Output only. Where the Google Docs transcript is saved. |\n\nDocsDestination\n---------------\n\nGoogle Docs location where the transcript file is saved.\n\n| JSON representation |\n|-----------------------------------------------------|\n| ``` { \"document\": string, \"exportUri\": string } ``` |\n\n| Fields ||\n|-------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `document` | `string` Output only. The document ID for the underlying Google Docs transcript file. For example, \"1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP\". Use the `documents.get` method of the Google Docs API (\u003chttps://developers.google.com/docs/api/reference/rest/v1/documents/get\u003e) to fetch the content. |\n| `exportUri` | `string` Output only. URI for the Google Docs transcript file. Use `https://docs.google.com/document/d/{$DocumentId}/view` to browse the transcript in the browser. |\n\nState\n-----\n\nCurrent state of the transcript session.\n\n| Enums ||\n|---------------------|---------------------------------------------------------------------------------------|\n| `STATE_UNSPECIFIED` | Default, never used. |\n| `STARTED` | An active transcript session has started. |\n| `ENDED` | This transcript session has ended, but the transcript file hasn't been generated yet. |\n| `FILE_GENERATED` | Transcript file is generated and ready to download. |\n\n| Methods ------- ||\n|--------------------------------------------------------------------------------------|----------------------------------------------------------|\n| ### [get](/workspace/meet/api/reference/rest/v2/conferenceRecords.transcripts/get) | Gets a transcript by transcript ID. |\n| ### [list](/workspace/meet/api/reference/rest/v2/conferenceRecords.transcripts/list) | Lists the set of transcripts from the conference record. |"]]