Module Values.BotLocaleSummarySource

Summary information about bot locales returned by the ListBotLocales operation.

Sourcetype nonrec t = {
  1. localeId : LocaleId.t option;
    (*

    The language and locale of the bot locale.

    *)
  2. localeName : LocaleName.t option;
    (*

    The name of the bot locale.

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

    The description of the bot locale.

    *)
  4. botLocaleStatus : BotLocaleStatus.t option;
    (*

    The current status of the bot locale. When the status is Built the locale is ready for use.

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

    A timestamp of the date and time that the bot locale was last updated.

    *)
  6. lastBuildSubmittedDateTime : Timestamp.t option;
    (*

    A timestamp of the date and time that the bot locale was last built.

    *)
}
Sourceval make : ?localeId:??? -> ?localeName:??? -> ?description:??? -> ?botLocaleStatus:??? -> ?lastUpdatedDateTime:??? -> ?lastBuildSubmittedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LocaleId.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