Interface ValidateAddressResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ValidateAddressResponse,ValidateAddressResponse.Builder
public interface ValidateAddressResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetResponseId()The UUID that identifies this response.com.google.protobuf.ByteStringgetResponseIdBytes()The UUID that identifies this response.ValidationResultgetResult()The result of the address validation.ValidationResultOrBuildergetResultOrBuilder()The result of the address validation.booleanhasResult()The result of the address validation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasResult
boolean hasResult()
The result of the address validation.
.google.maps.addressvalidation.v1.ValidationResult result = 1;- Returns:
- Whether the result field is set.
-
getResult
ValidationResult getResult()
The result of the address validation.
.google.maps.addressvalidation.v1.ValidationResult result = 1;- Returns:
- The result.
-
getResultOrBuilder
ValidationResultOrBuilder getResultOrBuilder()
The result of the address validation.
.google.maps.addressvalidation.v1.ValidationResult result = 1;
-
getResponseId
String getResponseId()
The UUID that identifies this response. If the address needs to be re-validated, this UUID *must* accompany the new request.
string response_id = 2;- Returns:
- The responseId.
-
getResponseIdBytes
com.google.protobuf.ByteString getResponseIdBytes()
The UUID that identifies this response. If the address needs to be re-validated, this UUID *must* accompany the new request.
string response_id = 2;- Returns:
- The bytes for responseId.
-
-