TNEntityAddress

@objcMembers
open class TNEntityAddress : NSObject, Codable

Undocumented

  • List containing the formatted address in separate lines when address_line is specified in request.

    Declaration

    Swift

    public var addressLines: [String]?
  • Indicates the type of address, for example address_type=street.

    Declaration

    Swift

    public var addressType: TNEntityAddressType?
  • The city name.

    Declaration

    Swift

    public var city: String?
  • The three-letter country code, as specified in ISO-3166 .

    Declaration

    Swift

    public var country: String?
  • Administrative region

    Declaration

    Swift

    public var county: String?
  • Street getCrossStreet()

    Declaration

    Swift

    public var crossStreet: TNEntityStreet?
  • A display formatted address

    Declaration

    Swift

    public var formattedAddress: String?
  • Display geo-coordinate for the address.

    Declaration

    Swift

    public var geoCoordinates: TNEntityGeoPoint?
  • The house/door number of the place.

    Declaration

    Swift

    public var houseNumber: String?
  • The locality or neighborhood information.

    Declaration

    Swift

    public var locality: String?
  • Location type of the address which indicates the precision level of the geo coordinates.

    Declaration

    Swift

    public var locationType: TNEntityLocationType?
  • Navigation coordinates (routable points) of the address used for routing purpose.

    Declaration

    Swift

    public var navCoordinates: TNEntityGeoPoint?
  • The postal or zip code.

    Declaration

    Swift

    public var postalCode: String?
  • The state name or province in some countries.

    Declaration

    Swift

    public var state: String?
  • The street information divided into multiple components.

    Declaration

    Swift

    public var street: TNEntityStreet?
  • The suite, apartment or building number.

    Declaration

    Swift

    public var suite: String?
  • The neighbourhood name.

    Declaration

    Swift

    public var neighbourhood: String?