class Google::Apis::YoutubePartnerV1::ClaimHistory
Attributes
event[RW]
A list of claim history events. Corresponds to the JSON property `event` @return [Array<Google::Apis::YoutubePartnerV1::ClaimEvent>]
id[RW]
The ID that YouTube assigns and uses to uniquely identify the claim. Corresponds to the JSON property `id` @return [String]
kind[RW]
The type of the API resource. For claimHistory resources, this value is youtubePartner#claimHistory. Corresponds to the JSON property `kind` @return [String]
uploader_channel_id[RW]
The external channel id of claimed video's uploader. Corresponds to the JSON property `uploaderChannelId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/youtube_partner_v1/classes.rb, line 1093 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/youtube_partner_v1/classes.rb, line 1098 def update!(**args) @event = args[:event] if args.key?(:event) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @uploader_channel_id = args[:uploader_channel_id] if args.key?(:uploader_channel_id) end