Interface UploadClickConversionsResponseOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
UploadClickConversionsResponse, UploadClickConversionsResponse.Builder

public interface UploadClickConversionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Job ID for the upload batch.
    com.google.rpc.Status
    Errors that pertain to conversion failures in the partial failure mode.
    com.google.rpc.StatusOrBuilder
    Errors that pertain to conversion failures in the partial failure mode.
    getResults(int index)
    Returned for successfully processed conversions.
    int
    Returned for successfully processed conversions.
    Returned for successfully processed conversions.
    Returned for successfully processed conversions.
    Returned for successfully processed conversions.
    boolean
    Errors that pertain to conversion failures in the partial failure mode.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasPartialFailureError

      boolean hasPartialFailureError()
       Errors that pertain to conversion failures in the partial failure mode.
       Returned when all errors occur inside the conversions. If any errors occur
       outside the conversions (for example, auth errors), we return an RPC level
       error. See
       https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
       for more information about partial failure.
       
      .google.rpc.Status partial_failure_error = 1;
      Returns:
      Whether the partialFailureError field is set.
    • getPartialFailureError

      com.google.rpc.Status getPartialFailureError()
       Errors that pertain to conversion failures in the partial failure mode.
       Returned when all errors occur inside the conversions. If any errors occur
       outside the conversions (for example, auth errors), we return an RPC level
       error. See
       https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
       for more information about partial failure.
       
      .google.rpc.Status partial_failure_error = 1;
      Returns:
      The partialFailureError.
    • getPartialFailureErrorOrBuilder

      com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder()
       Errors that pertain to conversion failures in the partial failure mode.
       Returned when all errors occur inside the conversions. If any errors occur
       outside the conversions (for example, auth errors), we return an RPC level
       error. See
       https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
       for more information about partial failure.
       
      .google.rpc.Status partial_failure_error = 1;
    • getResultsList

      List<ClickConversionResult> getResultsList()
       Returned for successfully processed conversions. Proto will be empty for
       rows that received an error. Results are not returned when validate_only is
       true.
       
      repeated .google.ads.googleads.v18.services.ClickConversionResult results = 2;
    • getResults

      ClickConversionResult getResults(int index)
       Returned for successfully processed conversions. Proto will be empty for
       rows that received an error. Results are not returned when validate_only is
       true.
       
      repeated .google.ads.googleads.v18.services.ClickConversionResult results = 2;
    • getResultsCount

      int getResultsCount()
       Returned for successfully processed conversions. Proto will be empty for
       rows that received an error. Results are not returned when validate_only is
       true.
       
      repeated .google.ads.googleads.v18.services.ClickConversionResult results = 2;
    • getResultsOrBuilderList

      List<? extends ClickConversionResultOrBuilder> getResultsOrBuilderList()
       Returned for successfully processed conversions. Proto will be empty for
       rows that received an error. Results are not returned when validate_only is
       true.
       
      repeated .google.ads.googleads.v18.services.ClickConversionResult results = 2;
    • getResultsOrBuilder

      ClickConversionResultOrBuilder getResultsOrBuilder(int index)
       Returned for successfully processed conversions. Proto will be empty for
       rows that received an error. Results are not returned when validate_only is
       true.
       
      repeated .google.ads.googleads.v18.services.ClickConversionResult results = 2;
    • getJobId

      long getJobId()
       Job ID for the upload batch.
       
      int64 job_id = 3;
      Returns:
      The jobId.