Module Values_1.TopicNamedEntitySource

A structure that represents a named entity.

Sourcetype nonrec t = {
  1. entityName : Values_0.LimitedString.t;
    (*

    The name of the named entity.

    *)
  2. entityDescription : Values_0.LimitedString.t option;
    (*

    The description of the named entity.

    *)
  3. entitySynonyms : Synonyms.t option;
    (*

    The other names or aliases for the named entity.

    *)
  4. semanticEntityType : SemanticEntityType.t option;
    (*

    The type of named entity that a topic represents.

    *)
  5. definition : NamedEntityDefinitions.t option;
    (*

    The definition of a named entity.

    *)
}
Sourceval context_ : string
Sourceval make : ?entityDescription:??? -> ?entitySynonyms:??? -> ?semanticEntityType:??? -> ?definition:??? -> entityName:Values_0.LimitedString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Values_0.LimitedString.t | `Structure of (string * [> `Enum of string | `String of Values_0.LimitedString.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list ]) list ]) list ] list | `String of Values_0.LimitedString.t | `Structure of (string * [> `Map of ([> `String of Values_0.LimitedString.t ] * [> `String of Values_0.LimitedString.t ]) list | `String of Values_0.LimitedString.t ]) 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