Module Values.QueryGenerationColumnSource

Contains information about a column in the current table for the query engine to consider.

Sourcetype nonrec t = {
  1. name : QueryGenerationColumnName.t option;
    (*

    The name of the column for which the other fields in this object apply.

    *)
  2. description : DescriptionString.t option;
    (*

    A description of the column that helps the query engine understand the contents of the column.

    *)
  3. inclusion : IncludeExclude.t option;
    (*

    Specifies whether to include or exclude the column during query generation. If you specify EXCLUDE, the column will be ignored. If you specify INCLUDE, all other columns in the table will be ignored.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?inclusion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of QueryGenerationColumnName.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