Module Values.UpdateErrorSource

A structure containing information about one error encountered while performing an UpdatePermissions operation.

Sourcetype nonrec t = {
  1. code : UpdateErrorCodeInteger.t option;
    (*

    The error code.

    *)
  2. message : String_.t option;
    (*

    The message for this error.

    *)
  3. causedBy : UpdateInstruction.t option;
    (*

    Specifies which permission update caused the error.

    *)
}
Sourceval make : ?code:??? -> ?message:??? -> ?causedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of UpdateErrorCodeInteger.t | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of SsoId.t ]) list ] list ]) list ]) 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