Address

public class Address : Item

A postal address.

  • The latitude of a location in WGS84 format.

    Declaration

    Swift

    let latitude: RealmOptional<Double>
  • The longitude of a location in WGS84 format.

    Declaration

    Swift

    let longitude: RealmOptional<Double>
  • A city or town.

    Declaration

    Swift

    @objc
    dynamic var city: String?
  • The postal code. For example, 94043.

    Declaration

    Swift

    @objc
    dynamic var postalCode: String?
  • A state or province of a country.

    Declaration

    Swift

    @objc
    dynamic var state: String?
  • The street address. For example, 1600 Amphitheatre Pkwy.

    Declaration

    Swift

    @objc
    dynamic var street: String?
  • The type or (sub)category of some Item.

    Declaration

    Swift

    @objc
    dynamic var itemType: String?
  • A location with a automatic lookup hash.

    Declaration

    Swift

    @objc
    dynamic var locationAutoLookupHash: String?
  • A country.

    Declaration

    Swift

    var country: Country? { get }
  • The location of for example where the event is happening, an organization is located, or where an action takes place.

    Declaration

    Swift

    var location: Location? { get }
  • Undocumented

    Declaration

    Swift

    public required convenience init(from decoder: Decoder) throws
  • Declaration

    Swift

    override var computedTitle: String { get }