com.google.ads.googleads.v16.services.CartDataOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v16 Show documentation
Show all versions of google-ads-stubs-v16 Show documentation
Stubs for GAAPI version google-ads-stubs-v16
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v16/services/conversion_upload_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v16.services;
public interface CartDataOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v16.services.CartData)
com.google.protobuf.MessageOrBuilder {
/**
*
* The Merchant Center ID where the items are uploaded.
*
*
* int64 merchant_id = 6;
* @return The merchantId.
*/
long getMerchantId();
/**
*
* The country code associated with the feed where the items are uploaded.
*
*
* string feed_country_code = 2;
* @return The feedCountryCode.
*/
java.lang.String getFeedCountryCode();
/**
*
* The country code associated with the feed where the items are uploaded.
*
*
* string feed_country_code = 2;
* @return The bytes for feedCountryCode.
*/
com.google.protobuf.ByteString
getFeedCountryCodeBytes();
/**
*
* The language code associated with the feed where the items are uploaded.
*
*
* string feed_language_code = 3;
* @return The feedLanguageCode.
*/
java.lang.String getFeedLanguageCode();
/**
*
* The language code associated with the feed where the items are uploaded.
*
*
* string feed_language_code = 3;
* @return The bytes for feedLanguageCode.
*/
com.google.protobuf.ByteString
getFeedLanguageCodeBytes();
/**
*
* Sum of all transaction level discounts, such as free shipping and
* coupon discounts for the whole cart. The currency code is the same
* as that in the ClickConversion message.
*
*
* double local_transaction_cost = 4;
* @return The localTransactionCost.
*/
double getLocalTransactionCost();
/**
*
* Data of the items purchased.
*
*
* repeated .google.ads.googleads.v16.services.CartData.Item items = 5;
*/
java.util.List
getItemsList();
/**
*
* Data of the items purchased.
*
*
* repeated .google.ads.googleads.v16.services.CartData.Item items = 5;
*/
com.google.ads.googleads.v16.services.CartData.Item getItems(int index);
/**
*
* Data of the items purchased.
*
*
* repeated .google.ads.googleads.v16.services.CartData.Item items = 5;
*/
int getItemsCount();
/**
*
* Data of the items purchased.
*
*
* repeated .google.ads.googleads.v16.services.CartData.Item items = 5;
*/
java.util.List extends com.google.ads.googleads.v16.services.CartData.ItemOrBuilder>
getItemsOrBuilderList();
/**
*
* Data of the items purchased.
*
*
* repeated .google.ads.googleads.v16.services.CartData.Item items = 5;
*/
com.google.ads.googleads.v16.services.CartData.ItemOrBuilder getItemsOrBuilder(
int index);
}