Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/videointelligence_v1/classes.rb,
generated/google/apis/videointelligence_v1/representations.rb,
generated/google/apis/videointelligence_v1/representations.rb

Overview

Video segment.

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

Returns a new instance of GoogleCloudVideointelligenceV1beta2VideoSegment.



1979
1980
1981
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1979

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

Instance Attribute Details

#end_time_offsetString

Time-offset, relative to the beginning of the video, corresponding to the end of the segment (inclusive). Corresponds to the JSON property endTimeOffset

Returns:

  • (String)


1971
1972
1973
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1971

def end_time_offset
  @end_time_offset
end

#start_time_offsetString

Time-offset, relative to the beginning of the video, corresponding to the start of the segment (inclusive). Corresponds to the JSON property startTimeOffset

Returns:

  • (String)


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

def start_time_offset
  @start_time_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1984
1985
1986
1987
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1984

def update!(**args)
  @end_time_offset = args[:end_time_offset] if args.key?(:end_time_offset)
  @start_time_offset = args[:start_time_offset] if args.key?(:start_time_offset)
end