Module GapiBloggerV2Model.User.Locale

module Locale: sig .. end

type t = {
   country : string; (*
The user's country setting.
*)
   language : string; (*
The user's language setting.
*)
   variant : string; (*
The user's language variant setting.
*)
}
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