Module Values.FailedCustomVocabularyItemSource

The unique failed custom vocabulary item from the custom vocabulary list.

Sourcetype nonrec t = {
  1. itemId : ItemId.t option;
    (*

    The unique item identifer for the failed custom vocabulary item from the custom vocabulary list.

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

    The error message for the failed custom vocabulary item from the custom vocabulary list.

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

    The unique error code for the failed custom vocabulary item from the custom vocabulary list.

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