Module Values.NewCustomVocabularyItemSource

The new custom vocabulary item from the custom vocabulary list.

Sourcetype nonrec t = {
  1. phrase : Phrase.t;
    (*

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

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

    The weight assigned to the new custom vocabulary item from the custom vocabulary list.

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

    The display as value assigned to the new custom vocabulary item from the custom vocabulary list.

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