class Google::Apis::YoutubePartnerV1::ReferenceConflict
Attributes
An id of a conflicting reference. Corresponds to the JSON property `conflictingReferenceId` @return [String]
Conflict review expiry time. Corresponds to the JSON property `expiryTime` @return [String]
A value that YouTube assigns and uses to uniquely identify a reference conflict. Corresponds to the JSON property `id` @return [String]
The type of the API resource. For referenceConflict resources, the value is youtubePartner#referenceConflict. Corresponds to the JSON property `kind` @return [String]
The list of matches between conflicting and original references at the time of conflict creation. Corresponds to the JSON property `matches` @return [Array<Google::Apis::YoutubePartnerV1::ReferenceConflictMatch>]
An id of an original reference. Corresponds to the JSON property `originalReferenceId` @return [String]
The referenceConflict's status. Corresponds to the JSON property `status` @return [String]
Public Class Methods
# File lib/google/apis/youtube_partner_v1/classes.rb, line 3500 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/youtube_partner_v1/classes.rb, line 3505 def update!(**args) @conflicting_reference_id = args[:conflicting_reference_id] if args.key?(:conflicting_reference_id) @expiry_time = args[:expiry_time] if args.key?(:expiry_time) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @matches = args[:matches] if args.key?(:matches) @original_reference_id = args[:original_reference_id] if args.key?(:original_reference_id) @status = args[:status] if args.key?(:status) end