Module Values.BatchDeleteReadSetRequestSource

Deletes one or more read sets. If the operation is successful, it returns a response with no body. If there is an error with deleting one of the read sets, the operation returns an error list. If the operation successfully deletes only a subset of files, it will return an error list for the remaining files that fail to be deleted. There is a limit of 100 read sets that can be deleted in each BatchDeleteReadSet API call.

Sourcetype nonrec t = {
  1. ids : ReadSetIdList.t;
    (*

    The read sets' IDs.

    *)
  2. sequenceStoreId : SequenceStoreId.t;
    (*

    The read sets' sequence store ID.

    *)
}
Sourceval context_ : string
Sourceval make : ids:ReadSetIdList.t -> sequenceStoreId:SequenceStoreId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ReadSetId.t ] list | `String of SequenceStoreId.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