Module Values.DissociateEntityFromThingRequestSource

Dissociates a device entity from a concrete thing. The action takes only the type of the entity that you need to dissociate because only one entity of a particular type can be associated with a thing.

Sourcetype nonrec t = {
  1. thingName : ThingName.t;
    (*

    The name of the thing to disassociate.

    *)
  2. entityType : EntityType.t;
    (*

    The entity type from which to disassociate the thing.

    *)
}
Sourceval context_ : string
Sourceval make : thingName:ThingName.t -> entityType:EntityType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ThingName.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