Class: Google::Apis::YoutubePartnerV1::MatchSegment

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) ⇒ 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

#channelString

Identifies the manner in which the claimed video matches the reference video. Corresponds to the JSON property channel

Returns:

  • (String)


1977
1978
1979
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1977

def channel
  @channel
end

#manual_segmentGoogle::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_segmentGoogle::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_segmentGoogle::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