Interface GoogleAdsFailureOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GoogleAdsFailure,GoogleAdsFailure.Builder
public interface GoogleAdsFailureOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GoogleAdsErrorgetErrors(int index)The list of errors that occurred.intgetErrorsCount()The list of errors that occurred.java.util.List<GoogleAdsError>getErrorsList()The list of errors that occurred.GoogleAdsErrorOrBuildergetErrorsOrBuilder(int index)The list of errors that occurred.java.util.List<? extends GoogleAdsErrorOrBuilder>getErrorsOrBuilderList()The list of errors that occurred.java.lang.StringgetRequestId()The unique ID of the request that is used for debugging purposes.com.google.protobuf.ByteStringgetRequestIdBytes()The unique ID of the request that is used for debugging purposes.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getErrorsList
java.util.List<GoogleAdsError> getErrorsList()
The list of errors that occurred.
repeated .google.ads.googleads.v10.errors.GoogleAdsError errors = 1;
-
getErrors
GoogleAdsError getErrors(int index)
The list of errors that occurred.
repeated .google.ads.googleads.v10.errors.GoogleAdsError errors = 1;
-
getErrorsCount
int getErrorsCount()
The list of errors that occurred.
repeated .google.ads.googleads.v10.errors.GoogleAdsError errors = 1;
-
getErrorsOrBuilderList
java.util.List<? extends GoogleAdsErrorOrBuilder> getErrorsOrBuilderList()
The list of errors that occurred.
repeated .google.ads.googleads.v10.errors.GoogleAdsError errors = 1;
-
getErrorsOrBuilder
GoogleAdsErrorOrBuilder getErrorsOrBuilder(int index)
The list of errors that occurred.
repeated .google.ads.googleads.v10.errors.GoogleAdsError errors = 1;
-
getRequestId
java.lang.String getRequestId()
The unique ID of the request that is used for debugging purposes.
string request_id = 2;- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
The unique ID of the request that is used for debugging purposes.
string request_id = 2;- Returns:
- The bytes for requestId.
-
-