Show / Hide Table of Contents

Class AddressInfo

Address information for the user.

Inheritance
object
AddressInfo
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.DataManager.v1.Data
Assembly: Google.Apis.DataManager.v1.dll
Syntax
public class AddressInfo : IDirectResponseSchema

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
[JsonProperty("addressLine")]
public virtual 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
[JsonProperty("administrativeArea")]
public virtual 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
[JsonProperty("city")]
public virtual string City { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { 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
[JsonProperty("familyName")]
public virtual 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
[JsonProperty("givenName")]
public virtual string GivenName { get; set; }
Property Value
Type Description
string

PostalCode

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

Declaration
[JsonProperty("postalCode")]
public virtual 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
[JsonProperty("regionCode")]
public virtual string RegionCode { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX