Values.GetDataRetentionBotResponseSourceRetrieves information about the data retention bot in a Wickr network, including its status and whether the data retention service is enabled.
type nonrec t = {botName : GenericString.t option;The name of the data retention bot.
*)botExists : Boolean.t option;Indicates whether a data retention bot exists in the network.
*)isBotActive : Boolean.t option;Indicates whether the data retention bot is active and operational.
*)isDataRetentionBotRegistered : Boolean.t option;Indicates whether the data retention bot has been registered with the network.
*)isDataRetentionServiceEnabled : Boolean.t option;Indicates whether the data retention service is enabled for the network.
*)isPubkeyMsgAcked : Boolean.t option;Indicates whether the public key message has been acknowledged by the bot.
*)}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 | `String of GenericString.t ]) list ]