com.google.ads.googleads.v17.common.OfflineUserAddressInfoOrBuilder 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/common/offline_user_data.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.common;
public interface OfflineUserAddressInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.common.OfflineUserAddressInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* First name of the user, which is hashed as SHA-256 after normalized
* (Lowercase all characters; Remove any extra spaces before, after, and in
* between).
*
*
* optional string hashed_first_name = 7;
* @return Whether the hashedFirstName field is set.
*/
boolean hasHashedFirstName();
/**
*
* First name of the user, which is hashed as SHA-256 after normalized
* (Lowercase all characters; Remove any extra spaces before, after, and in
* between).
*
*
* optional string hashed_first_name = 7;
* @return The hashedFirstName.
*/
java.lang.String getHashedFirstName();
/**
*
* First name of the user, which is hashed as SHA-256 after normalized
* (Lowercase all characters; Remove any extra spaces before, after, and in
* between).
*
*
* optional string hashed_first_name = 7;
* @return The bytes for hashedFirstName.
*/
com.google.protobuf.ByteString
getHashedFirstNameBytes();
/**
*
* Last name of the user, which is hashed as SHA-256 after normalized (lower
* case only and no punctuation).
*
*
* optional string hashed_last_name = 8;
* @return Whether the hashedLastName field is set.
*/
boolean hasHashedLastName();
/**
*
* Last name of the user, which is hashed as SHA-256 after normalized (lower
* case only and no punctuation).
*
*
* optional string hashed_last_name = 8;
* @return The hashedLastName.
*/
java.lang.String getHashedLastName();
/**
*
* Last name of the user, which is hashed as SHA-256 after normalized (lower
* case only and no punctuation).
*
*
* optional string hashed_last_name = 8;
* @return The bytes for hashedLastName.
*/
com.google.protobuf.ByteString
getHashedLastNameBytes();
/**
*
* City of the address. Only accepted for Store Sales and
* ConversionAdjustmentUploadService.
*
*
* optional string city = 9;
* @return Whether the city field is set.
*/
boolean hasCity();
/**
*
* City of the address. Only accepted for Store Sales and
* ConversionAdjustmentUploadService.
*
*
* optional string city = 9;
* @return The city.
*/
java.lang.String getCity();
/**
*
* City of the address. Only accepted for Store Sales and
* ConversionAdjustmentUploadService.
*
*
* optional string city = 9;
* @return The bytes for city.
*/
com.google.protobuf.ByteString
getCityBytes();
/**
*
* State code of the address. Only accepted for Store Sales and
* ConversionAdjustmentUploadService.
*
*
* optional string state = 10;
* @return Whether the state field is set.
*/
boolean hasState();
/**
*
* State code of the address. Only accepted for Store Sales and
* ConversionAdjustmentUploadService.
*
*
* optional string state = 10;
* @return The state.
*/
java.lang.String getState();
/**
*
* State code of the address. Only accepted for Store Sales and
* ConversionAdjustmentUploadService.
*
*
* optional string state = 10;
* @return The bytes for state.
*/
com.google.protobuf.ByteString
getStateBytes();
/**
*
* 2-letter country code in ISO-3166-1 alpha-2 of the user's address.
*
*
* optional string country_code = 11;
* @return Whether the countryCode field is set.
*/
boolean hasCountryCode();
/**
*
* 2-letter country code in ISO-3166-1 alpha-2 of the user's address.
*
*
* optional string country_code = 11;
* @return The countryCode.
*/
java.lang.String getCountryCode();
/**
*
* 2-letter country code in ISO-3166-1 alpha-2 of the user's address.
*
*
* optional string country_code = 11;
* @return The bytes for countryCode.
*/
com.google.protobuf.ByteString
getCountryCodeBytes();
/**
*
* Postal code of the user's address.
*
*
* optional string postal_code = 12;
* @return Whether the postalCode field is set.
*/
boolean hasPostalCode();
/**
*
* Postal code of the user's address.
*
*
* optional string postal_code = 12;
* @return The postalCode.
*/
java.lang.String getPostalCode();
/**
*
* Postal code of the user's address.
*
*
* optional string postal_code = 12;
* @return The bytes for postalCode.
*/
com.google.protobuf.ByteString
getPostalCodeBytes();
/**
*
* The street address of the user hashed using SHA-256 hash function after
* normalization (lower case only). Only accepted for
* ConversionAdjustmentUploadService.
*
*
* optional string hashed_street_address = 13;
* @return Whether the hashedStreetAddress field is set.
*/
boolean hasHashedStreetAddress();
/**
*
* The street address of the user hashed using SHA-256 hash function after
* normalization (lower case only). Only accepted for
* ConversionAdjustmentUploadService.
*
*
* optional string hashed_street_address = 13;
* @return The hashedStreetAddress.
*/
java.lang.String getHashedStreetAddress();
/**
*
* The street address of the user hashed using SHA-256 hash function after
* normalization (lower case only). Only accepted for
* ConversionAdjustmentUploadService.
*
*
* optional string hashed_street_address = 13;
* @return The bytes for hashedStreetAddress.
*/
com.google.protobuf.ByteString
getHashedStreetAddressBytes();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy