Values.CaseMetadataEntrySourceRepresents a single metadata entry associated with a case. Each entry consists of a key-value pair that provides additional contextual information about the case, such as classification tags, custom attributes, or system-generated properties.
type nonrec t = {key : CaseMetadataEntryKeyString.t;The identifier for the metadata field. This key uniquely identifies the type of metadata being stored, such as "severity", "category", or "assignee".
*)value : CaseMetadataEntryValueString.t;The value associated with the metadata key. This contains the actual data for the metadata field identified by the key.
*)}val make :
key:CaseMetadataEntryKeyString.t ->
value:CaseMetadataEntryValueString.t ->
unit ->
tval to_value :
t ->
[> `Structure of (string * [> `String of CaseMetadataEntryKeyString.t ]) list ]