class Google::Apis::YoutubePartnerV1::Claim::MatchInfo::TotalMatch
Details of the total amount of reference and user video content which matched each other. Note these two values may differ if either the reference or the user video contains a loop.
Attributes
reference_duration_secs[RW]
The total amount of content in the reference which matched the user video in seconds. Corresponds to the JSON property `referenceDurationSecs` @return [String]
user_video_duration_secs[RW]
The total amount of content in the user video which matched the reference in seconds. Corresponds to the JSON property `userVideoDurationSecs` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/youtube_partner_v1/classes.rb, line 918 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 923 def update!(**args) @reference_duration_secs = args[:reference_duration_secs] if args.key?(:reference_duration_secs) @user_video_duration_secs = args[:user_video_duration_secs] if args.key?(:user_video_duration_secs) end