AdsApp.​Address

Represents the address of a geographical point. Contains information about the street address, country, province / state, and postal code.

For instance, the address "1600 Amphitheatre Parkway, Mountain View, CA 94043" will have the following values:

  • getStreetAddress(): "1600 Amphitheatre Parkway"
  • getStreetAddress2(): null
  • getCityName(): "Mountain View"
  • getProvinceCode(): "CA"
  • getProvinceName(): "California"
  • getPostalCode(): "94043"
  • getCountryCode(): "US"

Methods:

MemberTypeDescription
getCityNameStringReturns the city name, or null if not known.
getCountryCodeStringReturns the country code, or null if not known.
getPostalCodeStringReturns the postal code, or null if not known.
getProvinceCodeStringReturns the province / state code, or null if not known.
getProvinceNameStringReturns the province / state name, or null if not known.
getStreetAddressStringReturns the street address, or null if not known.
getStreetAddress2StringReturns the second line of the street address, or null if not known.

getCityName()

Returns the city name, or null if not known.

Return values:

TypeDescription
StringThe city name, or null if not known.

getCountryCode()

Returns the country code, or null if not known.

Return values:

TypeDescription
StringThe country code, or null if not known.

getPostalCode()

Returns the postal code, or null if not known.

Return values:

TypeDescription
StringThe postal code, or null if not known.

getProvinceCode()

Returns the province / state code, or null if not known.

For instance, addresses in California would return "CA".

Return values:

TypeDescription
StringThe province code, or null if not known.

getProvinceName()

Returns the province / state name, or null if not known.

Return values:

TypeDescription
StringThe province name, or null if not known.

getStreetAddress()

Returns the street address, or null if not known.

Return values:

TypeDescription
StringThe street address, or null if not known.

getStreetAddress2()

Returns the second line of the street address, or null if not known.

Return values:

TypeDescription
StringThe second line of the street address, or null if not known.