Module Values.MedicalScribeTranscriptSegmentSource

A segment of transcript text with timing and channel information

Sourcetype nonrec t = {
  1. segmentId : String_.t option;
    (*

    The unique identifier for this segment

    *)
  2. audioBeginOffset : AudioOffset.t option;
    (*

    The offset from audio start when the audio for this segment begins

    *)
  3. audioEndOffset : AudioOffset.t option;
    (*

    The offset from audio start when the audio for this segment ends

    *)
  4. isPartial : NonNullBoolean.t option;
    (*

    Indicates whether this is a partial or final transcript

    *)
  5. channelId : String_.t option;
    (*

    The channel identifier for this segment

    *)
  6. content : String_.t option;
    (*

    The transcript text content

    *)
}
Sourceval make : ?segmentId:??? -> ?audioBeginOffset:??? -> ?audioEndOffset:??? -> ?isPartial:??? -> ?channelId:??? -> ?content:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NonNullBoolean.t | `Double of AudioOffset.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t