Module Values_0.ThingGroupDocumentSource

The thing group search index document.

Sourcetype nonrec t = {
  1. thingGroupName : ThingGroupName.t option;
    (*

    The thing group name.

    *)
  2. thingGroupId : ThingGroupId.t option;
    (*

    The thing group ID.

    *)
  3. thingGroupDescription : ThingGroupDescription.t option;
    (*

    The thing group description.

    *)
  4. attributes : Attributes.t option;
    (*

    The thing group attributes.

    *)
  5. parentGroupNames : ThingGroupNameList.t option;
    (*

    Parent group names.

    *)
}
Sourceval make : ?thingGroupName:??? -> ?thingGroupId:??? -> ?thingGroupDescription:??? -> ?attributes:??? -> ?parentGroupNames:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ThingGroupName.t ] list | `Map of ([> `String of AttributeName.t ] * [> `String of AttributeValue.t ]) list | `String of ThingGroupName.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