Module Values.AssetRelationshipSummarySource

Contains information about assets that are related to one another.

Sourcetype nonrec t = {
  1. hierarchyInfo : AssetHierarchyInfo.t option;
    (*

    The assets that are related through an asset hierarchy. This object is present if the relationshipType is HIERARCHY.

    *)
  2. relationshipType : AssetRelationshipType.t option;
    (*

    The relationship type of the assets in this relationship. This value is one of the following: HIERARCHY – The assets are related through an asset hierarchy. If you specify this relationship type, this asset relationship includes the hierarchyInfo object.

    *)
}
Sourceval make : ?hierarchyInfo:??? -> ?relationshipType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of ID.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