FacebookLocation

public struct FacebookLocation : Codable

Information describing the Location of a Place.

  • The City within which this Location resides.

    Declaration

    Swift

    public let city: String?
  • The Country within which this Location resides.

    Declaration

    Swift

    public let country: String?
  • The latitude of this Location.

    Declaration

    Swift

    public let latitude: Double?
  • The longitude of this Location.

    Declaration

    Swift

    public let longitude: Double?
  • The State (or localized equivalent) within which this Location resides.

    Declaration

    Swift

    public let state: String?
  • The Street address of this Location.

    Declaration

    Swift

    public let street: String?
  • zip

    The Zip code (or localized equivalent) corresponding to this Location.

    Declaration

    Swift

    public let zip: String?