Module Values.CustomVocabularyItemSource

The unique custom vocabulary item from the custom vocabulary list.

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

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

    *)
  2. phrase : Phrase.t;
    (*

    The unique phrase for the custom vocabulary item from the custom vocabulary list.

    *)
  3. weight : Weight.t option;
    (*

    The weight assigned for the custom vocabulary item from the custom vocabulary list.

    *)
  4. displayAs : Phrase.t option;
    (*

    The DisplayAs value for the custom vocabulary item from the custom vocabulary list.

    *)
}
Sourceval context_ : string
Sourceval make : ?weight:??? -> ?displayAs:??? -> itemId:ItemId.t -> phrase:Phrase.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Weight.t | `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