Class: Google::Apis::YoutubePartnerV1::AssetLabel
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::AssetLabel
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_partner_v1/classes.rb,
generated/google/apis/youtube_partner_v1/representations.rb,
generated/google/apis/youtube_partner_v1/representations.rb
Instance Attribute Summary collapse
-
#kind ⇒ String
The type of the API resource.
-
#label_name ⇒ String
Name of the asset label.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AssetLabel
constructor
A new instance of AssetLabel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AssetLabel
Returns a new instance of AssetLabel
270 271 272 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 270 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The type of the API resource. For assetLabel resources, this value is
youtubePartner#assetLabel.
Corresponds to the JSON property kind
263 264 265 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 263 def kind @kind end |
#label_name ⇒ String
Name of the asset label.
Corresponds to the JSON property labelName
268 269 270 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 268 def label_name @label_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
275 276 277 278 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 275 def update!(**args) @kind = args[:kind] if args.key?(:kind) @label_name = args[:label_name] if args.key?(:label_name) end |