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 @@ -387,9 +387,7 @@ public sealed partial class Transcript
public int? WebhookStatusCode { get; set; }

/// <summary>
/// The URL to which we send webhook requests.<br/>
/// We sends two different types of webhook requests.<br/>
/// One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
/// The URL to which we send webhook requests.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("webhook_url")]
public string? WebhookUrl { get; set; }
Expand Down Expand Up @@ -648,9 +646,7 @@ public sealed partial class Transcript
/// The status code we received from your server when delivering the transcript completed or failed webhook request, if a webhook URL was provided
/// </param>
/// <param name="webhookUrl">
/// The URL to which we send webhook requests.<br/>
/// We sends two different types of webhook requests.<br/>
/// One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
/// The URL to which we send webhook requests.
/// </param>
/// <param name="words">
/// An array of temporally-sequential word objects, one for each word in the transcript.<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,7 @@ public sealed partial class TranscriptOptionalParams
public string? WebhookAuthHeaderValue { get; set; }

/// <summary>
/// The URL to which we send webhook requests.<br/>
/// We sends two different types of webhook requests.<br/>
/// One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
/// The URL to which we send webhook requests.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("webhook_url")]
public string? WebhookUrl { get; set; }
Expand Down Expand Up @@ -490,9 +488,7 @@ public sealed partial class TranscriptOptionalParams
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
/// </param>
/// <param name="webhookUrl">
/// The URL to which we send webhook requests.<br/>
/// We sends two different types of webhook requests.<br/>
/// One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
/// The URL to which we send webhook requests.
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
4 changes: 0 additions & 4 deletions src/libs/AssemblyAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1579,8 +1579,6 @@ components:
x-label: Webhook URL
description: |
The URL to which we send webhook requests.
We sends two different types of webhook requests.
One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
type: string
format: url

Expand Down Expand Up @@ -3081,8 +3079,6 @@ components:
x-label: Webhook URL
description: |
The URL to which we send webhook requests.
We sends two different types of webhook requests.
One request when a transcript is completed or failed, and one request when the redacted audio is ready if redact_pii_audio is enabled.
type: [string, "null"]
format: url

Expand Down
Loading