Module Values.UpdateTestSetRequestSource

The action to update the test set.

Sourcetype nonrec t = {
  1. testSetId : Id.t;
    (*

    The test set Id for which update test operation to be performed.

    *)
  2. testSetName : Name.t;
    (*

    The new test set name.

    *)
  3. description : Description.t option;
    (*

    The new test set description.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> testSetId:Id.t -> testSetName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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