class Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress

Annotation progress for a single video.

Attributes

feature[RW]

Specifies which feature is being tracked if the request contains more than one feature. Corresponds to the JSON property `feature` @return [String]

input_uri[RW]

Video file location in [Cloud Storage](cloud.google.com/storage/). Corresponds to the JSON property `inputUri` @return [String]

progress_percent[RW]

Approximate percentage processed thus far. Guaranteed to be 100 when fully processed. Corresponds to the JSON property `progressPercent` @return [Fixnum]

segment[RW]

Video segment. Corresponds to the JSON property `segment` @return [Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment]

start_time[RW]

Time when the request was received. Corresponds to the JSON property `startTime` @return [String]

update_time[RW]

Time of the most recent update. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/videointelligence_v1p1beta1/classes.rb, line 3625
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/videointelligence_v1p1beta1/classes.rb, line 3630
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