Module Values.CaseMetadataEntrySource

Represents 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.

Sourcetype nonrec t = {
  1. 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".

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

    The value associated with the metadata key. This contains the actual data for the metadata field identified by the key.

    *)
}
Sourceval context_ : string
Sourceval to_value : t -> [> `Structure of (string * [> `String of CaseMetadataEntryKeyString.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