Hi!
I'm uploading conversions offline and when I get the UploadClickConversionsResponse, I can know the gclid uploaded or the conversiondate ...
Mi question is how can i know the conversion value uploaded?
UploadClickConversionsResponse resp =
conversionUploadServiceClient.uploadClickConversions(
UploadClickConversionsRequest.newBuilder()
.setCustomerId(Long.toString(customerId))
.addConversions(clickConversion)
.addAllConversions(prepareConversions(conversionsList))
Enables partial failure (must be true).
.setPartialFailure(true)
.build());
resp .getResultsList().forEach(r -> {GoogleAdsConversion gadsConv = new GoogleAdsConversion();
glid = r.getGclid();
date = r.getConversionDateTime();
But there isn't r.getValue();
Thanks for the help!