Module Values.BotMemberSource

A bot that is a member of a network of bots.

Sourcetype nonrec t = {
  1. botMemberId : Id.t;
    (*

    The unique ID of a bot that is a member of this network of bots.

    *)
  2. botMemberName : Name.t;
    (*

    The unique name of a bot that is a member of this network of bots.

    *)
  3. botMemberAliasId : BotAliasId.t;
    (*

    The alias ID of a bot that is a member of this network of bots.

    *)
  4. botMemberAliasName : BotAliasName.t;
    (*

    The alias name of a bot that is a member of this network of bots.

    *)
  5. botMemberVersion : BotVersion.t;
    (*

    The version of a bot that is a member of this network of bots.

    *)
}
Sourceval context_ : string
Sourceval make : botMemberId:Id.t -> botMemberName:Name.t -> botMemberAliasId:BotAliasId.t -> botMemberAliasName:BotAliasName.t -> botMemberVersion:BotVersion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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