Class: Google::Apis::YoutubePartnerV1::AssetLabel

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AssetLabel

Returns a new instance of AssetLabel.



237
238
239
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 237

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

Instance Attribute Details

#kindString

The type of the API resource. For assetLabel resources, this value is youtubePartner#assetLabel. Corresponds to the JSON property kind

Returns:

  • (String)


230
231
232
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 230

def kind
  @kind
end

#label_nameString

Name of the asset label. Corresponds to the JSON property labelName

Returns:

  • (String)


235
236
237
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 235

def label_name
  @label_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



242
243
244
245
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 242

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