Class Recording
Represents a recording used during the voice verification process.
Inherited Members
Namespace: Glitch9.AIDevKit.ElevenLabs
Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
Syntax
public class Recording
Properties
| Edit this page View SourceMimeType
The MIME type of the recording (e.g., audio/wav, audio/mpeg).
Declaration
[JsonProperty("mime_type")]
public string MimeType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RecordingId
The ID of the recording.
Declaration
[JsonProperty("recording_id")]
public string RecordingId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
SizeBytes
The size of the recording in bytes.
Declaration
[JsonProperty("size_bytes")]
public long SizeBytes { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
Transcription
The transcribed text from the recording.
Declaration
[JsonProperty("transcription")]
public string Transcription { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
UploadDateUnix
The upload date of the recording in Unix time.
Declaration
[JsonProperty("upload_date_unix")]
public long UploadDateUnix { get; set; }
Property Value
| Type | Description |
|---|---|
| long |