class Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ReviewDocumentRequest
Request message for review document method. Next Id: 6.
Attributes
Document represents the canonical document resource in Document Understanding AI. It is an interchange format that provides insights into documents and allows for collaboration between users and Document Understanding AI to iterate and optimize for quality. Corresponds to the JSON property `document` @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Document]
Whether the validation should be performed on the ad-hoc review request. Corresponds to the JSON property `enableSchemaValidation` @return [Boolean]
Whether the validation should be performed on the ad-hoc review request. Corresponds to the JSON property `enableSchemaValidation` @return [Boolean]
Document represents the canonical document resource in Document Understanding AI. It is an interchange format that provides insights into documents and allows for collaboration between users and Document Understanding AI to iterate and optimize for quality. Corresponds to the JSON property `inlineDocument` @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Document]
The priority of the human review task. Corresponds to the JSON property `priority` @return [String]
Public Class Methods
# File lib/google/apis/documentai_v1beta3/classes.rb, line 7147 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/documentai_v1beta3/classes.rb, line 7152 def update!(**args) @document = args[:document] if args.key?(:document) @enable_schema_validation = args[:enable_schema_validation] if args.key?(:enable_schema_validation) @inline_document = args[:inline_document] if args.key?(:inline_document) @priority = args[:priority] if args.key?(:priority) end