class Google::Apis::BloggerV3::User::Locale

This user's locale

Attributes

country[RW]

The user's country setting. Corresponds to the JSON property `country` @return [String]

language[RW]

The user's language setting. Corresponds to the JSON property `language` @return [String]

variant[RW]

The user's language variant setting. Corresponds to the JSON property `variant` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/blogger_v3/classes.rb, line 1340
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/blogger_v3/classes.rb, line 1345
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