Values.GetBotResponseSourceRetrieves detailed information about a specific bot in a Wickr network, including its status, group membership, and authentication details.
type nonrec t = {botId : GenericString.t option;The unique identifier of the bot.
*)displayName : GenericString.t option;The display name of the bot that is visible to users.
*)username : GenericString.t option;The username of the bot.
*)uname : GenericString.t option;The unique username hash identifier for the bot.
*)pubkey : GenericString.t option;The public key of the bot used for encryption.
*)status : BotStatus.t option;The current status of the bot (1 for pending, 2 for active).
*)groupId : GenericString.t option;The ID of the security group to which the bot belongs.
*)hasChallenge : Boolean.t option;Indicates whether the bot has a password set.
*)suspended : Boolean.t option;Indicates whether the bot is currently suspended.
*)lastLogin : GenericString.t option;The timestamp of the bot's last login.
*)}type nonrec error = [ | `BadRequestError of BadRequestError.t| `ForbiddenError of ForbiddenError.t| `InternalServerError of InternalServerError.t| `RateLimitError of RateLimitError.t| `ResourceNotFoundError of ResourceNotFoundError.t| `ValidationError of ValidationError.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of BotStatus.t
| `String of GenericString.t ])
list ]