Module Values.GraphLinkSource

The relation between two services.

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

    Relationship of a trace to the corresponding service.

    *)
  2. sourceTraceId : String_.t option;
    (*

    Source trace of a link relationship.

    *)
  3. destinationTraceIds : TraceIdList.t option;
    (*

    Destination traces of a link relationship.

    *)
}
Sourceval make : ?referenceType:??? -> ?sourceTraceId:??? -> ?destinationTraceIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of TraceId.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