We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71dee33 commit 02e78edCopy full SHA for 02e78ed
1 file changed
examples/remarketing/upload_enhanced_conversions_for_web.py
@@ -144,12 +144,8 @@ def main(
144
address_info.hashed_last_name = normalize_and_hash(
145
raw_record["last_name"]
146
)
147
- address_info.hashed_street_address = normalize_and_hash(
148
- raw_record["country_code"]
149
- )
150
151
- raw_record["postal_code"]
152
+ address_info.hashed_street_address = raw_record["country_code"]
+ address_info.hashed_street_address = raw_record["postal_code"]
153
# Adds the address identifier to the conversion adjustment.
154
conversion_adjustment.user_identifiers.append(address_identifier)
155
# [END add_user_identifiers]
0 commit comments