Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -605,8 +605,8 @@ partial void ProcessExportTranscriptResponseContent(
/// Example: 39677a40-1c43-4c36-8449-46cfbc4de2b5
/// </param>
/// <param name="format">
/// Transcript file format. For `docx`, the response `content` field<br/>
/// contains the base64-encoded binary file.
/// Transcript file format. The response body is the raw transcript file<br/>
/// in the requested format (binary for `docx`, plain text otherwise).
/// </param>
/// <param name="includeSpeakerLabels">
/// Speaker label mode.<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public partial interface IApiEndpointsClient
/// Example: 39677a40-1c43-4c36-8449-46cfbc4de2b5
/// </param>
/// <param name="format">
/// Transcript file format. For `docx`, the response `content` field<br/>
/// contains the base64-encoded binary file.
/// Transcript file format. The response body is the raw transcript file<br/>
/// in the requested format (binary for `docx`, plain text otherwise).
/// </param>
/// <param name="includeSpeakerLabels">
/// Speaker label mode.<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public sealed partial class ExportTranscriptRequest
public global::System.Guid? CompositionId { get; set; }

/// <summary>
/// Transcript file format. For `docx`, the response `content` field<br/>
/// contains the base64-encoded binary file.
/// Transcript file format. The response body is the raw transcript file<br/>
/// in the requested format (binary for `docx`, plain text otherwise).
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("format")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Descript.JsonConverters.ExportTranscriptRequestFormatJsonConverter))]
Expand Down Expand Up @@ -73,8 +73,8 @@ public sealed partial class ExportTranscriptRequest
/// Example: 9f36ee32-5a2c-47e7-b1a3-94991d3e3ddb
/// </param>
/// <param name="format">
/// Transcript file format. For `docx`, the response `content` field<br/>
/// contains the base64-encoded binary file.
/// Transcript file format. The response body is the raw transcript file<br/>
/// in the requested format (binary for `docx`, plain text otherwise).
/// </param>
/// <param name="compositionId">
/// The ID of the composition to export. Defaults to the first composition.<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
namespace Descript
{
/// <summary>
/// Transcript file format. For `docx`, the response `content` field<br/>
/// contains the base64-encoded binary file.
/// Transcript file format. The response body is the raw transcript file<br/>
/// in the requested format (binary for `docx`, plain text otherwise).
/// </summary>
public enum ExportTranscriptRequestFormat
{
Expand Down
4 changes: 2 additions & 2 deletions src/libs/Descript/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1194,8 +1194,8 @@ paths:
- rtf
- docx
description: |
Transcript file format. For `docx`, the response `content` field
contains the base64-encoded binary file.
Transcript file format. The response body is the raw transcript file
in the requested format (binary for `docx`, plain text otherwise).
include_speaker_labels:
type: string
enum:
Expand Down