Module Values.BotVersionReplicaSummarySource

Contains summary information for all the version replication statuses applicable for Global resiliency.

Sourcetype nonrec t = {
  1. botVersion : BotVersion.t option;
    (*

    The bot version for the summary information for all the version replication statuses.

    *)
  2. botVersionReplicationStatus : BotVersionReplicationStatus.t option;
    (*

    The version replication status for all the replicated bots.

    *)
  3. creationDateTime : Timestamp.t option;
    (*

    The creation date and time of the replication status for all the replicated bots.

    *)
  4. failureReasons : FailureReasons.t option;
    (*

    The reasons for replication failure for all the replicated bots.

    *)
}
Sourceval make : ?botVersion:??? -> ?botVersionReplicationStatus:??? -> ?creationDateTime:??? -> ?failureReasons:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of FailureReason.t ] list | `String of BotVersion.t | `Timestamp of Timestamp.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