class Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1HumanReviewStatus
The status of human review on a processed document.
Attributes
human_review_operation[RW]
The name of the operation triggered by the processed document. This field is populated only when the [state] is [HUMAN_REVIEW_IN_PROGRESS]. It has the same response type and metadata as the long running operation returned by [ ReviewDocument] method. Corresponds to the JSON property `humanReviewOperation` @return [String]
state[RW]
The state of human review on the processing request. Corresponds to the JSON property `state` @return [String]
state_message[RW]
A message providing more details about the human review state. Corresponds to the JSON property `stateMessage` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/documentai_v1/classes.rb, line 2562 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/documentai_v1/classes.rb, line 2567 def update!(**args) @human_review_operation = args[:human_review_operation] if args.key?(:human_review_operation) @state = args[:state] if args.key?(:state) @state_message = args[:state_message] if args.key?(:state_message) end