class Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress
Annotation progress for a single video.
Attributes
Specifies which feature is being tracked if the request contains more than one feature. Corresponds to the JSON property `feature` @return [String]
Video file location in [Cloud Storage](cloud.google.com/storage/). Corresponds to the JSON property `inputUri` @return [String]
Approximate percentage processed thus far. Guaranteed to be 100 when fully processed. Corresponds to the JSON property `progressPercent` @return [Fixnum]
Video segment. Corresponds to the JSON property `segment` @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment]
Time when the request was received. Corresponds to the JSON property `startTime` @return [String]
Time of the most recent update. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
# File lib/google/apis/videointelligence_v1p2beta1/classes.rb, line 3221 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/videointelligence_v1p2beta1/classes.rb, line 3226 def update!(**args) @feature = args[:feature] if args.key?(:feature) @input_uri = args[:input_uri] if args.key?(:input_uri) @progress_percent = args[:progress_percent] if args.key?(:progress_percent) @segment = args[:segment] if args.key?(:segment) @start_time = args[:start_time] if args.key?(:start_time) @update_time = args[:update_time] if args.key?(:update_time) end