Values.MedicalScribeTranscriptSegmentSourceA segment of transcript text with timing and channel information
type nonrec t = {segmentId : String_.t option;The unique identifier for this segment
*)audioBeginOffset : AudioOffset.t option;The offset from audio start when the audio for this segment begins
*)audioEndOffset : AudioOffset.t option;The offset from audio start when the audio for this segment ends
*)isPartial : NonNullBoolean.t option;Indicates whether this is a partial or final transcript
*)channelId : String_.t option;The channel identifier for this segment
*)content : String_.t option;The transcript text content
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of NonNullBoolean.t
| `Double of AudioOffset.t
| `String of String_.t ])
list ]