Class StatusDetails
public sealed class StatusDetails
- Inheritance
-
StatusDetails
- Inherited Members
Properties
Error
A description of the error that caused the response to fail, populated when the status is failed.
[JsonInclude]
[JsonPropertyName("error")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public Error Error { get; }
Property Value
Reason
The reason the Response did not complete. For a cancelled Response, one of turn_detected (the server VAD detected a new start of speech) or client_cancelled (the client sent a cancel event). For an incomplete Response, one of max_output_tokens or content_filter (the server-side safety filter activated and cut off the response).
[JsonInclude]
[JsonPropertyName("reason")]
public string Reason { get; }
Property Value
Type
The type of error that caused the response to fail, corresponding with the status field (cancelled, incomplete, failed).
[JsonInclude]
[JsonPropertyName("type")]
[JsonConverter(typeof(JsonStringEnumConverter<RealtimeResponseStatus>))]
public RealtimeResponseStatus Type { get; }