Class: Google::Apis::YoutubeV3::LocalizedString

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LocalizedString

Returns a new instance of LocalizedString.



5408
5409
5410
# File 'lib/google/apis/youtube_v3/classes.rb', line 5408

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

Instance Attribute Details

#languageString

Corresponds to the JSON property language

Returns:

  • (String)


5401
5402
5403
# File 'lib/google/apis/youtube_v3/classes.rb', line 5401

def language
  @language
end

#valueString

Corresponds to the JSON property value

Returns:

  • (String)


5406
5407
5408
# File 'lib/google/apis/youtube_v3/classes.rb', line 5406

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5413
5414
5415
5416
# File 'lib/google/apis/youtube_v3/classes.rb', line 5413

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