Show / Hide Table of Contents

Class AddressInfo

Address information for the user.

Inheritance
object
AddressInfo
Implements
IMessage<AddressInfo>
IEquatable<AddressInfo>
IDeepCloneable<AddressInfo>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Ads.DataManager.V1
Assembly: Google.Ads.DataManager.V1.dll
Syntax
public sealed class AddressInfo : IMessage<AddressInfo>, IEquatable<AddressInfo>, IDeepCloneable<AddressInfo>, IBufferMessage, IMessage

Constructors

AddressInfo()

Declaration
public AddressInfo()

AddressInfo(AddressInfo)

Declaration
public AddressInfo(AddressInfo other)
Parameters
Type Name Description
AddressInfo other

Properties

AddressLine

Optional. The street and number of the user's address. Used only for Google Analytics. This field is hashed and possibly encrypted.

Normalize the value before hashing:

  • Remove symbol characters
  • Convert to lowercase
  • Remove leading and trailing whitespace
Declaration
public string AddressLine { get; set; }
Property Value
Type Description
string

AdministrativeArea

Optional. The administrative area (state/province) of the user's address. Used only for Google Analytics.

The value should be normalized as such:

  • Remove symbol characters
  • Convert to lowercase
  • Remove leading and trailing whitespace
Declaration
public string AdministrativeArea { get; set; }
Property Value
Type Description
string

City

Optional. The city of the user's address. Used only for Google Analytics.

The value should be normalized as such:

  • Remove symbol characters
  • Convert to lowercase
  • Remove leading and trailing whitespace
Declaration
public string City { get; set; }
Property Value
Type Description
string

FamilyName

Required. Family (last) name of the user, all lowercase, with no punctuation, no leading or trailing whitespace, and hashed as SHA-256.

Declaration
public string FamilyName { get; set; }
Property Value
Type Description
string

GivenName

Required. Given (first) name of the user, all lowercase, with no punctuation, no leading or trailing whitespace, and hashed as SHA-256.

Declaration
public string GivenName { get; set; }
Property Value
Type Description
string

PostalCode

Required. The postal code of the user's address.

Declaration
public string PostalCode { get; set; }
Property Value
Type Description
string

RegionCode

Required. The 2-letter region code in ISO-3166-1 alpha-2 of the user's address.

Declaration
public string RegionCode { get; set; }
Property Value
Type Description
string
In this article
Back to top Generated by DocFX