Class Recording
Represents a recording used during the voice verification process.
Inheritance
object
Recording
Namespace: Glitch9.AIDevKit.ElevenLabs
Assembly: .dll
Syntax
public class Recording
Properties
MimeType
The MIME type of the recording (e.g., audio/wav, audio/mpeg).
Declaration
public string MimeType { get; set; }
Property Value
Type | Description |
---|---|
string |
RecordingId
The ID of the recording.
Declaration
public string RecordingId { get; set; }
Property Value
Type | Description |
---|---|
string |
SizeBytes
The size of the recording in bytes.
Declaration
public long SizeBytes { get; set; }
Property Value
Type | Description |
---|---|
long |
Transcription
The transcribed text from the recording.
Declaration
public string Transcription { get; set; }
Property Value
Type | Description |
---|---|
string |
UploadDateUnix
The upload date of the recording in Unix time.
Declaration
public long UploadDateUnix { get; set; }
Property Value
Type | Description |
---|---|
long |