Values.AttributeValueSourceThe data type for an attribute. Each attribute value is described as a name-value pair. The name is the AD schema name, and the value is the data itself. For a list of supported attributes, see Directory Service Data Attributes.
type nonrec t = {bOOL : BooleanAttributeValue.t option;Indicates that the attribute type value is a boolean. For example: "BOOL": true
*)n : NumberAttributeValue.t option;Indicates that the attribute type value is a number. For example: "N": "16"
*)s : StringAttributeValue.t option;Indicates that the attribute type value is a string. For example: "S": "S Group"
*)sS : StringSetAttributeValue.t option;Indicates that the attribute type value is a string set. For example: "SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanAttributeValue.t
| `List of [> `String of StringAttributeValue.t ] list
| `Long of NumberAttributeValue.t
| `String of StringAttributeValue.t ])
list ]