Module Values.LocalizedStringSource

The localized string.

Sourcetype nonrec t = {
  1. language : LanguageTag.t option;
    (*

    A list of BCP 47 compliant language codes for the results to be rendered in. The request uses the regional default as the fallback if the requested language can't be provided.

    *)
  2. value : SensitiveString.t option;
    (*

    The value of the localized string.

    *)
}
Sourceval make : ?language:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LanguageTag.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