Values.MetadataAttributeValueSourceContains the value of the metadata attribute. Choose a type and include the field that corresponds to it.
type nonrec t = {type_ : MetadataValueType.t;The type of the metadata attribute.
*)numberValue : NumberValue.t option;The value of the numeric metadata attribute.
*)booleanValue : Boolean.t option;The value of the Boolean metadata attribute.
*)stringValue : StringValue.t option;The value of the string metadata attribute.
*)stringListValue : MetadataAttributeValueStringListValueList.t option;An array of strings that define the value of the metadata attribute.
*)}val make :
?numberValue:??? ->
?booleanValue:??? ->
?stringValue:??? ->
?stringListValue:??? ->
type_:MetadataValueType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Double of NumberValue.t
| `Enum of string
| `List of [> `String of StringValue.t ] list
| `String of StringValue.t ])
list ]