Module Values.SearchRelatedItemsRequestSource

Searches for related items that are associated with a case. If no filters are provided, this returns all related items associated with a case.

Sourcetype nonrec t = {
  1. domainId : DomainId.t;
    (*

    The unique identifier of the Cases domain.

    *)
  2. caseId : CaseId.t;
    (*

    A unique identifier of the case.

    *)
  3. maxResults : SearchRelatedItemsRequestMaxResultsInteger.t option;
    (*

    The maximum number of results to return per page.

    *)
  4. nextToken : NextToken.t option;
    (*

    The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

    *)
  5. filters : SearchRelatedItemsRequestFiltersList.t option;
    (*

    The list of types of related items and their parameters to use for filtering.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> ?filters:??? -> domainId:DomainId.t -> caseId:CaseId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SearchRelatedItemsRequestMaxResultsInteger.t | `List of [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) list ] list | `String of DomainId.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