Class: Google::Apis::YoutubePartnerV1::LongestMatch

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LongestMatch

Returns a new instance of LongestMatch.



1914
1915
1916
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1914

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

Instance Attribute Details

#duration_secsFixnum

The duration of the longest match between the reference and the user video. Corresponds to the JSON property durationSecs

Returns:

  • (Fixnum)


1902
1903
1904
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1902

def duration_secs
  @duration_secs
end

#reference_offsetFixnum

The offset in seconds into the reference at which the longest match began. Corresponds to the JSON property referenceOffset

Returns:

  • (Fixnum)


1907
1908
1909
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1907

def reference_offset
  @reference_offset
end

#user_video_offsetFixnum

The offset in seconds into the user video at which the longest match began. Corresponds to the JSON property userVideoOffset

Returns:

  • (Fixnum)


1912
1913
1914
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1912

def user_video_offset
  @user_video_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1919
1920
1921
1922
1923
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1919

def update!(**args)
  @duration_secs = args[:duration_secs] if args.key?(:duration_secs)
  @reference_offset = args[:reference_offset] if args.key?(:reference_offset)
  @user_video_offset = args[:user_video_offset] if args.key?(:user_video_offset)
end