SpeechAlignment
AgentPrism.Abstractions.dllOne character’s position in the generated audio.
public sealed record SpeechAlignment : IEquatable<SpeechAlignment>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Remarks
Section titled “Remarks”Character-level, not word-level: this is the granularity ElevenLabs’ .../with-timestamps
endpoint reports (verified against its published OpenAPI document, 2026-08-19).
Grouping characters into words or producing a subtitle format (SRT/VTT) is left
to the consumer: the raw form is enough.
Constructors
Section titled “Constructors”SpeechAlignment()
Section titled “ SpeechAlignment()”public SpeechAlignment()Properties
Section titled “Properties”Character
Section titled “ Character”The character, as sent in the request text.
public required string Character { get; init; }Property Value
Section titled “Property Value”When the character ends, relative to the start of the audio.
public required TimeSpan End { get; init; }Property Value
Section titled “Property Value”When the character starts, relative to the start of the audio.
public required TimeSpan Start { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(SpeechAlignment?)
Section titled “ Equals(SpeechAlignment?)”public bool Equals(SpeechAlignment? other)Parameters
Section titled “Parameters”other SpeechAlignment?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(SpeechAlignment?, SpeechAlignment?)
Section titled “ operator ==(SpeechAlignment?, SpeechAlignment?)”public static bool operator ==(SpeechAlignment? left, SpeechAlignment? right)Parameters
Section titled “Parameters”left SpeechAlignment?
right SpeechAlignment?
Returns
Section titled “Returns”operator !=(SpeechAlignment?, SpeechAlignment?)
Section titled “ operator !=(SpeechAlignment?, SpeechAlignment?)”public static bool operator !=(SpeechAlignment? left, SpeechAlignment? right)Parameters
Section titled “Parameters”left SpeechAlignment?
right SpeechAlignment?