Module Values_0.ColumnSource

A column in a Table.

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

    The name of the Column.

    *)
  2. type_ : ColumnTypeString.t option;
    (*

    The data type of the Column.

    *)
  3. comment : CommentString.t option;
    (*

    A free-form text comment.

    *)
  4. parameters : ParametersMap.t option;
    (*

    These key-value pairs define properties associated with the column.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> ?comment:??? -> ?parameters:??? -> name:NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ]) list | `String of NameString.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