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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ MatchSegment

Returns a new instance of MatchSegment.



1884
1885
1886
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1884

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)


1863
1864
1865
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1863

def channel
  @channel
end

#manual_segmentGoogle::Apis::YoutubePartnerV1::Segment

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



1870
1871
1872
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1870

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



1876
1877
1878
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1876

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



1882
1883
1884
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1882

def video_segment
  @video_segment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1889
1890
1891
1892
1893
1894
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1889

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