Interface Document.Revision.HumanReviewOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Document.Revision.HumanReview
,Document.Revision.HumanReview.Builder
- Enclosing class:
- Document.Revision
public static interface Document.Revision.HumanReviewOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getState()
Human review state.com.google.protobuf.ByteString
getStateBytes()
Human review state.String
getStateMessage()
A message providing more details about the current state of processing.com.google.protobuf.ByteString
getStateMessageBytes()
A message providing more details about the current state of processing.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getState
String getState()
Human review state. e.g. `requested`, `succeeded`, `rejected`.
string state = 1;
- Returns:
- The state.
-
getStateBytes
com.google.protobuf.ByteString getStateBytes()
Human review state. e.g. `requested`, `succeeded`, `rejected`.
string state = 1;
- Returns:
- The bytes for state.
-
getStateMessage
String getStateMessage()
A message providing more details about the current state of processing. For example, the rejection reason when the state is `rejected`.
string state_message = 2;
- Returns:
- The stateMessage.
-
getStateMessageBytes
com.google.protobuf.ByteString getStateMessageBytes()
A message providing more details about the current state of processing. For example, the rejection reason when the state is `rejected`.
string state_message = 2;
- Returns:
- The bytes for stateMessage.
-
-