Module Values.GetDataRetentionBotResponseSource

Retrieves information about the data retention bot in a Wickr network, including its status and whether the data retention service is enabled.

Sourcetype nonrec t = {
  1. botName : GenericString.t option;
    (*

    The name of the data retention bot.

    *)
  2. botExists : Boolean.t option;
    (*

    Indicates whether a data retention bot exists in the network.

    *)
  3. isBotActive : Boolean.t option;
    (*

    Indicates whether the data retention bot is active and operational.

    *)
  4. isDataRetentionBotRegistered : Boolean.t option;
    (*

    Indicates whether the data retention bot has been registered with the network.

    *)
  5. isDataRetentionServiceEnabled : Boolean.t option;
    (*

    Indicates whether the data retention service is enabled for the network.

    *)
  6. isPubkeyMsgAcked : Boolean.t option;
    (*

    Indicates whether the public key message has been acknowledged by the bot.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestError of BadRequestError.t
  2. | `ForbiddenError of ForbiddenError.t
  3. | `InternalServerError of InternalServerError.t
  4. | `RateLimitError of RateLimitError.t
  5. | `ResourceNotFoundError of ResourceNotFoundError.t
  6. | `UnauthorizedError of UnauthorizedError.t
  7. | `ValidationError of ValidationError.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?botName:??? -> ?botExists:??? -> ?isBotActive:??? -> ?isDataRetentionBotRegistered:??? -> ?isDataRetentionServiceEnabled:??? -> ?isPubkeyMsgAcked:??? -> unit -> t
Sourceval 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 ]
Sourceval 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 ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of GenericString.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