Module GapiBloggerV2Model.Blog.Locale

module Locale: sig .. end

type t = {
   country : string; (*
The country this blog's locale is set to.
*)
   language : string; (*
The language this blog is authored in.
*)
   variant : string; (*
The language variant this blog is authored in.
*)
}
val country : (t, string) GapiLens.t
val language : (t, string) GapiLens.t
val variant : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t