class Google::Apis::YoutubeV3::I18nLanguage

An i18nLanguage resource identifies a UI language currently supported by YouTube.

Attributes

etag[RW]

Etag of this resource. Corresponds to the JSON property `etag` @return [String]

id[RW]

The ID that YouTube uses to uniquely identify the i18n language. Corresponds to the JSON property `id` @return [String]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “youtube# i18nLanguage”. Corresponds to the JSON property `kind` @return [String]

snippet[RW]

Basic details about an i18n language, such as language code and human-readable name. Corresponds to the JSON property `snippet` @return [Google::Apis::YoutubeV3::I18nLanguageSnippet]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/youtube_v3/classes.rb, line 2952
def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @snippet = args[:snippet] if args.key?(:snippet)
end