Class: Google::Apis::YoutubePartnerV1::Claim::MatchInfo::TotalMatch

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/youtube_partner_v1/classes.rb,
generated/google/apis/youtube_partner_v1/representations.rb,
generated/google/apis/youtube_partner_v1/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TotalMatch

Returns a new instance of TotalMatch.



956
957
958
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 956

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#reference_duration_secsFixnum

The total amount of content in the reference which matched the user video in seconds. Corresponds to the JSON property referenceDurationSecs

Returns:

  • (Fixnum)


948
949
950
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 948

def reference_duration_secs
  @reference_duration_secs
end

#user_video_duration_secsFixnum

The total amount of content in the user video which matched the reference in seconds. Corresponds to the JSON property userVideoDurationSecs

Returns:

  • (Fixnum)


954
955
956
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 954

def user_video_duration_secs
  @user_video_duration_secs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



961
962
963
964
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 961

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