Module Values.AssetCompositeModelSummarySource

Contains a summary of the composite model for a specific asset.

Sourcetype nonrec t = {
  1. id : ID.t option;
    (*

    The ID of the composite model that this summary describes.

    *)
  2. externalId : ExternalId.t option;
    (*

    An external ID to assign to the asset model. If the composite model is a derived composite model, or one nested inside a component model, you can only set the external ID using UpdateAssetModelCompositeModel and specifying the derived ID of the model or property from the created model it's a part of.

    *)
  3. name : Name.t option;
    (*

    The name of the composite model that this summary describes.

    *)
  4. type_ : Name.t option;
    (*

    The type of asset model. ASSET_MODEL – (default) An asset model that you can use to create assets. Can't be included as a component in another asset model. COMPONENT_MODEL – A reusable component that you can include in the composite models of other asset models. You can't create assets directly from this type of asset model.

    *)
  5. description : Description.t option;
    (*

    A description of the composite model that this summary describes.

    *)
  6. path : AssetCompositeModelPath.t option;
    (*

    The path that includes all the components of the asset model for the asset.

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