class Google::Apis::BloggerV2::User::Locale
This user's locale
Attributes
country[RW]
The country this blog's locale is set to. Corresponds to the JSON property `country` @return [String]
language[RW]
The language this blog is authored in. Corresponds to the JSON property `language` @return [String]
variant[RW]
The language variant this blog is authored in. Corresponds to the JSON property `variant` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/blogger_v2/classes.rb, line 1184 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/blogger_v2/classes.rb, line 1189 def update!(**args) @country = args[:country] if args.key?(:country) @language = args[:language] if args.key?(:language) @variant = args[:variant] if args.key?(:variant) end