Module Values.SourceFieldPropertiesSource

The properties that can be applied to a field when the connector is being used as a source.

Sourcetype nonrec t = {
  1. isRetrievable : Boolean.t option;
    (*

    Indicates whether the field can be returned in a search result.

    *)
  2. isQueryable : Boolean.t option;
    (*

    Indicates if the field can be queried.

    *)
  3. isTimestampFieldForIncrementalQueries : Boolean.t option;
    (*

    Indicates if this timestamp field can be used for incremental queries.

    *)
}
Sourceval make : ?isRetrievable:??? -> ?isQueryable:??? -> ?isTimestampFieldForIncrementalQueries:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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