Module Values.AliasSource

An alias for an edge.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The canonical name of the alias.

    *)
  2. names : AliasNames.t option;
    (*

    A list of names for the alias, including the canonical name.

    *)
  3. type_ : String_.t option;
    (*

    The type of the alias.

    *)
}
Sourceval make : ?name:??? -> ?names:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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