Interface UpdateDocumentResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateDocumentResponse
,UpdateDocumentResponse.Builder
public interface UpdateDocumentResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Document
getDocument()
Updated document after executing update request.DocumentOrBuilder
getDocumentOrBuilder()
Updated document after executing update request.ResponseMetadata
getMetadata()
Additional information for the API invocation, such as the request tracking id.ResponseMetadataOrBuilder
getMetadataOrBuilder()
Additional information for the API invocation, such as the request tracking id.RuleEngineOutput
getRuleEngineOutput()
Output from Rule Engine recording the rule evaluator and action executor's output.RuleEngineOutputOrBuilder
getRuleEngineOutputOrBuilder()
Output from Rule Engine recording the rule evaluator and action executor's output.boolean
hasDocument()
Updated document after executing update request.boolean
hasMetadata()
Additional information for the API invocation, such as the request tracking id.boolean
hasRuleEngineOutput()
Output from Rule Engine recording the rule evaluator and action executor's output.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDocument
boolean hasDocument()
Updated document after executing update request.
.google.cloud.contentwarehouse.v1.Document document = 1;
- Returns:
- Whether the document field is set.
-
getDocument
Document getDocument()
Updated document after executing update request.
.google.cloud.contentwarehouse.v1.Document document = 1;
- Returns:
- The document.
-
getDocumentOrBuilder
DocumentOrBuilder getDocumentOrBuilder()
Updated document after executing update request.
.google.cloud.contentwarehouse.v1.Document document = 1;
-
hasRuleEngineOutput
boolean hasRuleEngineOutput()
Output from Rule Engine recording the rule evaluator and action executor's output. Refer format in: google/cloud/contentwarehouse/v1/rule_engine.proto
.google.cloud.contentwarehouse.v1.RuleEngineOutput rule_engine_output = 2;
- Returns:
- Whether the ruleEngineOutput field is set.
-
getRuleEngineOutput
RuleEngineOutput getRuleEngineOutput()
Output from Rule Engine recording the rule evaluator and action executor's output. Refer format in: google/cloud/contentwarehouse/v1/rule_engine.proto
.google.cloud.contentwarehouse.v1.RuleEngineOutput rule_engine_output = 2;
- Returns:
- The ruleEngineOutput.
-
getRuleEngineOutputOrBuilder
RuleEngineOutputOrBuilder getRuleEngineOutputOrBuilder()
Output from Rule Engine recording the rule evaluator and action executor's output. Refer format in: google/cloud/contentwarehouse/v1/rule_engine.proto
.google.cloud.contentwarehouse.v1.RuleEngineOutput rule_engine_output = 2;
-
hasMetadata
boolean hasMetadata()
Additional information for the API invocation, such as the request tracking id.
.google.cloud.contentwarehouse.v1.ResponseMetadata metadata = 3;
- Returns:
- Whether the metadata field is set.
-
getMetadata
ResponseMetadata getMetadata()
Additional information for the API invocation, such as the request tracking id.
.google.cloud.contentwarehouse.v1.ResponseMetadata metadata = 3;
- Returns:
- The metadata.
-
getMetadataOrBuilder
ResponseMetadataOrBuilder getMetadataOrBuilder()
Additional information for the API invocation, such as the request tracking id.
.google.cloud.contentwarehouse.v1.ResponseMetadata metadata = 3;
-
-