Module Values_1.OutputColumnSource

Output column.

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

    The display name of the column..

    *)
  2. id : Values_0.ColumnId.t option;
    (*

    A unique identifier for the output column.

    *)
  3. description : ColumnDescriptiveText.t option;
    (*

    A description for a column.

    *)
  4. type_ : ColumnDataType.t option;
    (*

    The data type of the column.

    *)
  5. subType : ColumnDataSubType.t option;
    (*

    The sub data type of the column.

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