Module Values.RecipeVersionErrorDetailSource

Represents any errors encountered when attempting to delete multiple recipe versions.

Sourcetype nonrec t = {
  1. errorCode : ErrorCode.t option;
    (*

    The HTTP status code for the error.

    *)
  2. errorMessage : RecipeErrorMessage.t option;
    (*

    The text of the error message.

    *)
  3. recipeVersion : RecipeVersion.t option;
    (*

    The identifier for the recipe version associated with this error.

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