Module Values.CsvOptionsSource

Processing options for the CSV file being imported.

Sourcetype nonrec t = {
  1. delimiter : CsvDelimiter.t option;
    (*

    The delimiter used for separating items in the CSV file being imported.

    *)
  2. headerList : CsvHeaderList.t option;
    (*

    List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.

    *)
}
Sourceval make : ?delimiter:??? -> ?headerList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of CsvHeader.t ] list | `String of CsvDelimiter.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