Module Values_0.DynamicDefaultValueSource

Defines different defaults to the users or groups based on mapping.

Sourcetype nonrec t = {
  1. userNameColumn : ColumnIdentifier.t option;
    (*

    The column that contains the username.

    *)
  2. groupNameColumn : ColumnIdentifier.t option;
    (*

    The column that contains the group name.

    *)
  3. defaultValueColumn : ColumnIdentifier.t;
    (*

    The column that contains the default value of each user or group.

    *)
}
Sourceval context_ : string
Sourceval make : ?userNameColumn:??? -> ?groupNameColumn:??? -> defaultValueColumn:ColumnIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of DataSetIdentifier.t ]) list ]) 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