class Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1AsyncAnnotateFileRequest

An offline file annotation request.

Attributes

features[RW]

Required. Requested features. Corresponds to the JSON property `features` @return [Array<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1Feature>]

image_context[RW]

Image context and/or feature-specific parameters. Corresponds to the JSON property `imageContext` @return [Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1ImageContext]

input_config[RW]

The desired input location and metadata. Corresponds to the JSON property `inputConfig` @return [Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1InputConfig]

output_config[RW]

The desired output location and metadata. Corresponds to the JSON property `outputConfig` @return [Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1OutputConfig]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vision_v1p1beta1/classes.rb, line 1144
def update!(**args)
  @features = args[:features] if args.key?(:features)
  @image_context = args[:image_context] if args.key?(:image_context)
  @input_config = args[:input_config] if args.key?(:input_config)
  @output_config = args[:output_config] if args.key?(:output_config)
end