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 String
getResponseId()
The UUID that identifies this response.com.google.protobuf.ByteString
getResponseIdBytes()
The UUID that identifies this response.ValidationResult
getResult()
The result of the address validation.ValidationResultOrBuilder
getResultOrBuilder()
The result of the address validation.boolean
hasResult()
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.
-
-