Class SpeechOutputData
public class SpeechOutputData
- Inheritance
-
objectSpeechOutputData
Properties
Data
Base64 encoded audio bytes generated by the model, in the format specified in the request.
public string Data { get; set; }
Property Value
- string
ExpiresAt
The Unix timestamp (in seconds) for when this audio response will no longer be accessible on the server for use in multi-turn conversations.
public UnixTime? ExpiresAt { get; set; }
Property Value
- UnixTime?
Id
Unique identifier for this audio response.
public string Id { get; set; }
Property Value
- string
Transcript
Transcript of the audio generated by the model.
public string Transcript { get; set; }
Property Value
- string