Module Values.DeleteAssetModelInterfaceRelationshipRequestSource

Deletes an interface relationship between an asset model and an interface asset model.

Sourcetype nonrec t = {
  1. assetModelId : CustomID.t;
    (*

    The ID of the asset model. This can be either the actual ID in UUID format, or else externalId: followed by the external ID.

    *)
  2. interfaceAssetModelId : CustomID.t;
    (*

    The ID of the interface asset model. This can be either the actual ID in UUID format, or else externalId: followed by the external ID.

    *)
  3. clientToken : ClientToken.t option;
    (*

    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> assetModelId:CustomID.t -> interfaceAssetModelId:CustomID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CustomID.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