Module Values.GetCaseAuditEventsRequestSource

Returns the audit history about a specific case if it exists.

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

    A unique identifier of the case.

    *)
  2. domainId : DomainId.t;
    (*

    The unique identifier of the Cases domain.

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

    The maximum number of audit events to return. When no value is provided, 25 is the default.

    *)
  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.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> caseId:CaseId.t -> domainId:DomainId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of GetCaseAuditEventsRequestMaxResultsInteger.t | `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