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.
5065 5066 5067 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5065 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default ⇒ String
Corresponds to the JSON property default
5053 5054 5055 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5053 def default @default end |
#default_language ⇒ Google::Apis::YoutubeV3::LanguageTag
The language of the default property.
Corresponds to the JSON property defaultLanguage
5058 5059 5060 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5058 def default_language @default_language end |
#localized ⇒ Array<Google::Apis::YoutubeV3::LocalizedString>
Corresponds to the JSON property localized
5063 5064 5065 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5063 def localized @localized end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5070 5071 5072 5073 5074 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5070 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 |