class Google::Apis::YoutubePartnerV1::ReferenceConflictMatch
Attributes
conflicting_reference_offset_ms[RW]
Conflicting reference offset in milliseconds. Corresponds to the JSON property `conflicting_reference_offset_ms` @return [Fixnum]
length_ms[RW]
Match length in milliseconds. Corresponds to the JSON property `length_ms` @return [Fixnum]
original_reference_offset_ms[RW]
Original reference offset in milliseconds. Corresponds to the JSON property `original_reference_offset_ms` @return [Fixnum]
type[RW]
The referenceConflictMatch's type. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 3579 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 3584 def update!(**args) @conflicting_reference_offset_ms = args[:conflicting_reference_offset_ms] if args.key?(:conflicting_reference_offset_ms) @length_ms = args[:length_ms] if args.key?(:length_ms) @original_reference_offset_ms = args[:original_reference_offset_ms] if args.key?(:original_reference_offset_ms) @type = args[:type] if args.key?(:type) end