class Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentRevisionHumanReview

Human Review information of the document.

Attributes

state[RW]

Human review state. e.g. `requested`, `succeeded`, `rejected`. Corresponds to the JSON property `state` @return [String]

state_message[RW]

A message providing more details about the current state of processing. For example, the rejection reason when the state is `rejected`. 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 2144
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 2149
def update!(**args)
  @state = args[:state] if args.key?(:state)
  @state_message = args[:state_message] if args.key?(:state_message)
end