Module Values.SendMessageContentBlockDeltaSource

Union of possible delta payloads within a content block delta event

Sourcetype nonrec t = {
  1. textDelta : SendMessageTextDelta.t option;
    (*

    Text delta for text-based content blocks

    *)
  2. jsonDelta : SendMessageJsonDelta.t option;
    (*

    JSON delta for structured content blocks

    *)
}
Sourceval make : ?textDelta:??? -> ?jsonDelta:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) 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