class Google::Apis::YoutubePartnerV1::ReferenceConflict

Attributes

conflicting_reference_id[RW]

An id of a conflicting reference. Corresponds to the JSON property `conflictingReferenceId` @return [String]

expiry_time[RW]

Conflict review expiry time. Corresponds to the JSON property `expiryTime` @return [String]

id[RW]

A value that YouTube assigns and uses to uniquely identify a reference conflict. Corresponds to the JSON property `id` @return [String]

kind[RW]

The type of the API resource. For referenceConflict resources, the value is youtubePartner#referenceConflict. Corresponds to the JSON property `kind` @return [String]

matches[RW]

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>]

original_reference_id[RW]

An id of an original reference. Corresponds to the JSON property `originalReferenceId` @return [String]

status[RW]

The referenceConflict's status. Corresponds to the JSON property `status` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 3500
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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