Class: Google::Apis::YoutubePartnerV1::AssetSnippet

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) ⇒ AssetSnippet

Returns a new instance of AssetSnippet.



532
533
534
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 532

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

Instance Attribute Details

#custom_idString

Custom ID assigned by the content owner to this asset. Corresponds to the JSON property customId

Returns:

  • (String)


492
493
494
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 492

def custom_id
  @custom_id
end

#idString

An ID that YouTube assigns and uses to uniquely identify the asset. Corresponds to the JSON property id

Returns:

  • (String)


497
498
499
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 497

def id
  @id
end

#isrcString

The ISRC (International Standard Recording Code) for this asset. Corresponds to the JSON property isrc

Returns:

  • (String)


502
503
504
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 502

def isrc
  @isrc
end

#iswcString

The ISWC (International Standard Musical Work Code) for this asset. Corresponds to the JSON property iswc

Returns:

  • (String)


507
508
509
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 507

def iswc
  @iswc
end

#kindString

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

Returns:

  • (String)


513
514
515
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 513

def kind
  @kind
end

#time_createdDateTime

The date and time the asset was created. The value is specified in RFC 3339 ( YYYY-MM-DDThh:mm:ss.000Z) format. Corresponds to the JSON property timeCreated

Returns:

  • (DateTime)


519
520
521
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 519

def time_created
  @time_created
end

#titleString

Title of this asset. Corresponds to the JSON property title

Returns:

  • (String)


524
525
526
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 524

def title
  @title
end

#typeString

The asset's type. This value determines which metadata fields might be included in the metadata object. Corresponds to the JSON property type

Returns:

  • (String)


530
531
532
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 530

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



537
538
539
540
541
542
543
544
545
546
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 537

def update!(**args)
  @custom_id = args[:custom_id] if args.key?(:custom_id)
  @id = args[:id] if args.key?(:id)
  @isrc = args[:isrc] if args.key?(:isrc)
  @iswc = args[:iswc] if args.key?(:iswc)
  @kind = args[:kind] if args.key?(:kind)
  @time_created = args[:time_created] if args.key?(:time_created)
  @title = args[:title] if args.key?(:title)
  @type = args[:type] if args.key?(:type)
end