Class: Google::Apis::AdminDirectoryV1::UserLanguage

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb

Overview

JSON template for a language entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserLanguage

Returns a new instance of UserLanguage.



4405
4406
4407
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4405

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#custom_languageString

Other language. User can provide own language name if there is no corresponding Google III language code. If this is set LanguageCode can't be set Corresponds to the JSON property customLanguage

Returns:

  • (String)


4397
4398
4399
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4397

def custom_language
  @custom_language
end

#language_codeString

Language Code. Should be used for storing Google III LanguageCode string representation for language. Illegal values cause SchemaException. Corresponds to the JSON property languageCode

Returns:

  • (String)


4403
4404
4405
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4403

def language_code
  @language_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4410
4411
4412
4413
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4410

def update!(**args)
  @custom_language = args[:custom_language] if args.key?(:custom_language)
  @language_code = args[:language_code] if args.key?(:language_code)
end