Module Values.SearchCasesResponseItemSource

A list of items that represent cases.

Sourcetype nonrec t = {
  1. caseId : CaseId.t option;
    (*

    A unique identifier of the case.

    *)
  2. templateId : TemplateId.t option;
    (*

    A unique identifier of a template.

    *)
  3. fields : SearchCasesResponseItemFieldsList.t option;
    (*

    List of case field values.

    *)
  4. tags : Tags.t option;
    (*

    A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.

    *)
}
Sourceval make : ?caseId:??? -> ?templateId:??? -> ?fields:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldId.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldValueUnionStringValueString.t | `Structure of 'a list ]) list ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of CaseId.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