Module Values_1.UploadSettingsSource

Information about the format for a source file or files.

Sourcetype nonrec t = {
  1. format : FileFormat.t option;
    (*

    File format.

    *)
  2. startFromRow : PositiveInteger.t option;
    (*

    A row number to start reading data from.

    *)
  3. containsHeader : Values_0.Boolean.t option;
    (*

    Whether the file has a header row, or the files each have a header row.

    *)
  4. textQualifier : TextQualifier.t option;
    (*

    Text qualifier.

    *)
  5. delimiter : Delimiter.t option;
    (*

    The delimiter between values in the file.

    *)
  6. customCellAddressRange : Values_0.String_.t option;
    (*

    A custom cell address range for Excel files, specifying which cells to import from the spreadsheet.

    *)
}
Sourceval make : ?format:??? -> ?startFromRow:??? -> ?containsHeader:??? -> ?textQualifier:??? -> ?delimiter:??? -> ?customCellAddressRange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Integer of PositiveInteger.t | `String of Delimiter.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