Table of Contents

Class Recording

Represents a recording used during the voice verification process.

public class Recording
Inheritance
object
Recording

Properties

MimeType

The MIME type of the recording (e.g., audio/wav, audio/mpeg).

public string MimeType { get; set; }

Property Value

string

RecordingId

The ID of the recording.

public string RecordingId { get; set; }

Property Value

string

SizeBytes

The size of the recording in bytes.

public long SizeBytes { get; set; }

Property Value

long

Transcription

The transcribed text from the recording.

public string Transcription { get; set; }

Property Value

string

UploadDateUnix

The upload date of the recording in Unix time.

public long UploadDateUnix { get; set; }

Property Value

long