UserProfileLocation
public struct UserProfileLocation
Contains specific data for a Location
-
The userβs latitude
Declaration
Swift
public var latitude: Double? -
The userβs longitude
Declaration
Swift
public var longitude: Double? -
The userβs postal code
Declaration
Swift
public var postalCode: String? -
The userβs city
Declaration
Swift
public var city: String? -
The userβs region
Declaration
Swift
public var region: String? -
The userβs country
Declaration
Swift
public var country: String? -
Initializer
Declaration
Swift
public init( latitude: Double? = nil, longitude: Double? = nil, postalCode: String? = nil, city: String? = nil, region: String? = nil, country: String? = nil )Parameters
latitudeThe userβs latitude
longitudeThe userβs longitude
postalCodeThe userβs postal code
cityThe userβs city
regionThe userβs region
countryThe userβs country
View on GitHub