Module Values.ReplaceableAttributeSource

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

    The name of the replaceable attribute.

    *)
  2. value : String_.t;
    (*

    The value of the replaceable attribute.

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

    A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.

    *)
}
Sourceval context_ : string
Sourceval make : ?replace:??? -> name:String_.t -> value:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.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