Module Values.DeleteUniqueIdErrorSource

The error information provided when the delete unique ID operation doesn't complete.

Sourcetype nonrec t = {
  1. uniqueId : HeaderSafeUniqueId.t option;
    (*

    The unique ID that couldn't be deleted.

    *)
  2. errorType : DeleteUniqueIdErrorType.t option;
    (*

    The error type for the delete unique ID operation. The SERVICE_ERROR value indicates that an internal service-side problem occurred during the deletion operation. The VALIDATION_ERROR value indicates that the deletion operation couldn't complete because of invalid input parameters or data.

    *)
}
Sourceval make : ?uniqueId:??? -> ?errorType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of HeaderSafeUniqueId.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