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.
Constructor Details
#initialize(**args) ⇒ AssetLabel
Returns a new instance of AssetLabel.
195 196 197 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 195 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
188 189 190 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 188 def kind @kind end |
#label_name ⇒ String
Name of the asset label.
Corresponds to the JSON property labelName
193 194 195 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 193 def label_name @label_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
200 201 202 203 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 200 def update!(**args) @kind = args[:kind] if args.key?(:kind) @label_name = args[:label_name] if args.key?(:label_name) end |