Module Values.DeleteAnnotationStoreVersionsRequestSource

Deletes one or multiple versions of an annotation store.

Sourcetype nonrec t = {
  1. name : String_.t;
    (*

    The name of the annotation store from which versions are being deleted.

    *)
  2. versions : VersionList.t;
    (*

    The versions of an annotation store to be deleted.

    *)
  3. force : PrimitiveBoolean.t option;
    (*

    Forces the deletion of an annotation store version when imports are in-progress..

    *)
}
Sourceval context_ : string
Sourceval make : ?force:??? -> name:String_.t -> versions:VersionList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of PrimitiveBoolean.t | `List of [> `String of VersionName.t ] list | `String of String_.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