Module Values.BatchDeleteDelegationByAssessmentErrorSource

An error entity for the BatchDeleteDelegationByAssessment API. This is used to provide more meaningful errors than a simple string message.

Sourcetype nonrec t = {
  1. delegationId : UUID.t option;
    (*

    The identifier for the delegation.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The error code that the BatchDeleteDelegationByAssessment API returned.

    *)
  3. errorMessage : ErrorMessage.t option;
    (*

    The error message that the BatchDeleteDelegationByAssessment API returned.

    *)
}
Sourceval make : ?delegationId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.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