Class: Google::Apis::YoutubePartnerV1::LongestMatch
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::LongestMatch
- 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
-
#duration_secs ⇒ Fixnum
The duration of the longest match between the reference and the user video.
-
#reference_offset ⇒ Fixnum
The offset in seconds into the reference at which the longest match began.
-
#user_video_offset ⇒ Fixnum
The offset in seconds into the user video at which the longest match began.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LongestMatch
constructor
A new instance of LongestMatch.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_secs ⇒ Fixnum
The duration of the longest match between the reference and the user video.
Corresponds to the JSON property durationSecs
1902 1903 1904 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1902 def duration_secs @duration_secs end |
#reference_offset ⇒ Fixnum
The offset in seconds into the reference at which the longest match began.
Corresponds to the JSON property referenceOffset
1907 1908 1909 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1907 def reference_offset @reference_offset end |
#user_video_offset ⇒ Fixnum
The offset in seconds into the user video at which the longest match began.
Corresponds to the JSON property userVideoOffset
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 |