com.google.ads.googleads.v17.services.UploadCallConversionsRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/services/conversion_upload_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface UploadCallConversionsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.UploadCallConversionsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The ID of the customer performing the upload.
*
*
* string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The customerId.
*/
java.lang.String getCustomerId();
/**
*
* Required. The ID of the customer performing the upload.
*
*
* string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The bytes for customerId.
*/
com.google.protobuf.ByteString
getCustomerIdBytes();
/**
*
* Required. The conversions that are being uploaded.
*
*
* repeated .google.ads.googleads.v17.services.CallConversion conversions = 2 [(.google.api.field_behavior) = REQUIRED];
*/
java.util.List
getConversionsList();
/**
*
* Required. The conversions that are being uploaded.
*
*
* repeated .google.ads.googleads.v17.services.CallConversion conversions = 2 [(.google.api.field_behavior) = REQUIRED];
*/
com.google.ads.googleads.v17.services.CallConversion getConversions(int index);
/**
*
* Required. The conversions that are being uploaded.
*
*
* repeated .google.ads.googleads.v17.services.CallConversion conversions = 2 [(.google.api.field_behavior) = REQUIRED];
*/
int getConversionsCount();
/**
*
* Required. The conversions that are being uploaded.
*
*
* repeated .google.ads.googleads.v17.services.CallConversion conversions = 2 [(.google.api.field_behavior) = REQUIRED];
*/
java.util.List extends com.google.ads.googleads.v17.services.CallConversionOrBuilder>
getConversionsOrBuilderList();
/**
*
* Required. The conversions that are being uploaded.
*
*
* repeated .google.ads.googleads.v17.services.CallConversion conversions = 2 [(.google.api.field_behavior) = REQUIRED];
*/
com.google.ads.googleads.v17.services.CallConversionOrBuilder getConversionsOrBuilder(
int index);
/**
*
* Required. If true, successful operations will be carried out and invalid
* operations will return errors. If false, all operations will be carried
* out in one transaction if and only if they are all valid.
* This should always be set to true.
* See
* https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
* for more information about partial failure.
*
*
* bool partial_failure = 3 [(.google.api.field_behavior) = REQUIRED];
* @return The partialFailure.
*/
boolean getPartialFailure();
/**
*
* If true, the request is validated but not executed. Only errors are
* returned, not results.
*
*
* bool validate_only = 4;
* @return The validateOnly.
*/
boolean getValidateOnly();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy