Module Values.InlineContentSource

Contains information about content defined inline to ingest into a data source. Choose a type and include the field that corresponds to it.

Sourcetype nonrec t = {
  1. type_ : InlineContentType.t;
    (*

    The type of inline content to define.

    *)
  2. byteContent : ByteContentDoc.t option;
    (*

    Contains information about content defined inline in bytes.

    *)
  3. textContent : TextContentDoc.t option;
    (*

    Contains information about content defined inline in text.

    *)
}
Sourceval context_ : string
Sourceval make : ?byteContent:??? -> ?textContent:??? -> type_:InlineContentType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Blob of ByteContentBlob.t | `String of ByteContentDocMimeTypeString.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