Class: Google::Apis::YoutubeV3::LocalizedProperty
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LocalizedProperty
- 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
-
#default ⇒ String
Corresponds to the JSON property
default. -
#default_language ⇒ Google::Apis::YoutubeV3::LanguageTag
The language of the default property.
-
#localized ⇒ Array<Google::Apis::YoutubeV3::LocalizedString>
Corresponds to the JSON property
localized.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LocalizedProperty
constructor
A new instance of LocalizedProperty.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LocalizedProperty
Returns a new instance of LocalizedProperty.
5215 5216 5217 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5215 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default ⇒ String
Corresponds to the JSON property default
5203 5204 5205 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5203 def default @default end |
#default_language ⇒ Google::Apis::YoutubeV3::LanguageTag
The language of the default property.
Corresponds to the JSON property defaultLanguage
5208 5209 5210 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5208 def default_language @default_language end |
#localized ⇒ Array<Google::Apis::YoutubeV3::LocalizedString>
Corresponds to the JSON property localized
5213 5214 5215 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5213 def localized @localized end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5220 5221 5222 5223 5224 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5220 def update!(**args) @default = args[:default] if args.key?(:default) @default_language = args[:default_language] if args.key?(:default_language) @localized = args[:localized] if args.key?(:localized) end |