Class: Google::Apis::YoutubePartnerV1::MatchSegment
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::MatchSegment
- 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
-
#channel ⇒ String
Identifies the manner in which the claimed video matches the reference video.
-
#manual_segment ⇒ Google::Apis::YoutubePartnerV1::Segment2
On insert operation of manual claims, the manual_segment object contains information about the specific portion of the video that is claimed to be matching.
-
#reference_segment ⇒ Google::Apis::YoutubePartnerV1::Segment
The reference_segment object contains information about the matched portion of the reference content.
-
#video_segment ⇒ Google::Apis::YoutubePartnerV1::Segment
The video_segment object contains information about the matched portion of the claimed video.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MatchSegment
constructor
A new instance of MatchSegment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MatchSegment
Returns a new instance of MatchSegment.
1998 1999 2000 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel ⇒ String
Identifies the manner in which the claimed video matches the reference video.
Corresponds to the JSON property channel
1977 1978 1979 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1977 def channel @channel end |
#manual_segment ⇒ Google::Apis::YoutubePartnerV1::Segment2
On insert operation of manual claims, the manual_segment object contains
information about the specific portion of the video that is claimed to be
matching.
Corresponds to the JSON property manual_segment
1984 1985 1986 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1984 def manual_segment @manual_segment end |
#reference_segment ⇒ Google::Apis::YoutubePartnerV1::Segment
The reference_segment object contains information about the matched portion of
the reference content.
Corresponds to the JSON property reference_segment
1990 1991 1992 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1990 def reference_segment @reference_segment end |
#video_segment ⇒ Google::Apis::YoutubePartnerV1::Segment
The video_segment object contains information about the matched portion of the
claimed video.
Corresponds to the JSON property video_segment
1996 1997 1998 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1996 def video_segment @video_segment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2003 2004 2005 2006 2007 2008 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2003 def update!(**args) @channel = args[:channel] if args.key?(:channel) @manual_segment = args[:manual_segment] if args.key?(:manual_segment) @reference_segment = args[:reference_segment] if args.key?(:reference_segment) @video_segment = args[:video_segment] if args.key?(:video_segment) end |