Module Values.BotVersionSummarySource

Summary information about a bot version returned by the ListBotVersions operation.

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

    The name of the bot associated with the version.

    *)
  2. botVersion : BotVersion.t option;
    (*

    The numeric version of the bot, or DRAFT to indicate that this is the version of the bot that can be updated..

    *)
  3. description : Description.t option;
    (*

    The description of the version.

    *)
  4. botStatus : BotStatus.t option;
    (*

    The status of the bot. When the status is available, the version of the bot is ready for use.

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

    A timestamp of the date and time that the version was created.

    *)
}
Sourceval make : ?botName:??? -> ?botVersion:??? -> ?description:??? -> ?botStatus:??? -> ?creationDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.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