Module Values.SearchTasksRequestSource

Shared input fields for all Search operations (filterExpressions, sortExpressions, itemOffset, pageSize).

Sourcetype nonrec t = {
  1. farmId : FarmId.t;
    (*

    The farm ID of the task.

    *)
  2. filterExpressions : SearchGroupedFilterExpressions.t option;
    (*

    The search terms for a resource.

    *)
  3. sortExpressions : SearchSortExpressions.t option;
    (*

    The search terms for a resource.

    *)
  4. itemOffset : SearchTasksRequestItemOffsetInteger.t;
    (*

    The offset for the search results.

    *)
  5. pageSize : SearchTasksRequestPageSizeInteger.t option;
    (*

    Specifies the number of results to return.

    *)
  6. queueIds : SearchTasksRequestQueueIdsList.t;
    (*

    The queue IDs to include in the search.

    *)
  7. jobId : JobId.t option;
    (*

    The job ID for the task search.

    *)
}
Sourceval context_ : string
Sourceval make : ?filterExpressions:??? -> ?sortExpressions:??? -> ?pageSize:??? -> ?jobId:??? -> farmId:FarmId.t -> itemOffset:SearchTasksRequestItemOffsetInteger.t -> queueIds:SearchTasksRequestQueueIdsList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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