Module Values_0.ContactSearchSummarySegmentAttributeValueSource

The value of a segment attribute. This is structured as a map with a single key-value pair. The key 'valueString' indicates that the attribute type is a string, and its corresponding value is the actual string value of the segment attribute.

Sourcetype nonrec t = {
  1. valueString : SegmentAttributeValueString.t option;
    (*

    The value of a segment attribute represented as a string.

    *)
  2. valueMap : SegmentAttributeValueMap.t option;
    (*

    The key and value of a segment attribute.

    *)
}
Sourceval make : ?valueString:??? -> ?valueMap:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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