Place

public struct Place : Codable, Equatable

Struct representing Place related values.

  • id

    Value representing the entity id.

    Declaration

    Swift

    public var id: Int
  • Label of the place.

    Declaration

    Swift

    public var label: String
  • Name of the place.

    Declaration

    Swift

    public var name: String
  • Integration Id of the place.

    Declaration

    Swift

    public var integrationId: String
  • url

    URL of the place.

    Declaration

    Swift

    public var url: String
  • Place ID of the place.

    Declaration

    Swift

    public var placeId: String
  • Address of the place.

    Declaration

    Swift

    public var address: String
  • Country code of the place.

    Declaration

    Swift

    public var countryCode: String
  • Country of the place.

    Declaration

    Swift

    public var country: String
  • State of the place.

    Declaration

    Swift

    public var state: String
  • County of the place.

    Declaration

    Swift

    public var county: String
  • City of the place.

    Declaration

    Swift

    public var city: String
  • Zip Code of the place.

    Declaration

    Swift

    public var zipCode: String
  • Latitude coordinate of the place.

    Declaration

    Swift

    public var latitude: String
  • Latitude coordinate of the place.

    Declaration

    Swift

    public var longitude: String
  • Timezone of the place.

    Declaration

    Swift

    public var timezone: String
  • UTC Offset of the place.

    Declaration

    Swift

    public var utcOffset: String
  • Name of the owner of the place.

    Declaration

    Swift

    public var owner: String
  • Email address of the place.

    Declaration

    Swift

    public var email: String
  • Phone Number of the place.

    Declaration

    Swift

    public var phone: String
  • Thumbnail image url of the place.

    Declaration

    Swift

    public var thumbImageUrl: String
  • Original image url of the place.

    Declaration

    Swift

    public var originalImageUrl: String
  • Operating Hours of the place.

    Declaration

    Swift

    public var operatingHours: String
  • Detailed Operating Hours of the place.

    Declaration

    Swift

    public var operatingHoursDetailed: [OperatingDay]
  • Status of the place.

    Declaration

    Swift

    public var status: String
  • List of Categories of the place.

    Declaration

    Swift

    public var categories: [Category]
  • Radius of the place.

    Declaration

    Swift

    public var radius: Double
  • Radius Unit of the place.

    Declaration

    Swift

    public var radiusUnit: String
  • Dwell of the place.

    Declaration

    Swift

    public var dwell: Int
  • List of extra info of the place.

    Declaration

    Swift

    public var extraInfo: [String : String?]
  • Client Event Types of the place.

    Declaration

    Swift

    public var clientEventTypes: [ClientEventType]
  • External Links of the place.

    Declaration

    Swift

    public var links: [String : String?]
  • Returns if the challenge is favorited or not.

    Declaration

    Swift

    public var isFavorite: Bool
  • Distance from the place.

    Declaration

    Swift

    public var distance: Double
  • Unit of measure of the distance used in fetching locations.

    Declaration

    Swift

    public var distanceUnit: String
  • Undocumented

    Declaration

    Swift

    public init(id: Int, label: String, name: String, integrationId: String,
                url: String, placeId: String, address: String, countryCode: String,
                country: String, state: String, county: String, city: String,
                zipCode: String, latitude: String, longitude: String, timezone: String,
                utcOffset: String, owner: String, email: String, phone: String,
                thumbImageUrl: String, originalImageUrl: String, operatingHours: String,
                operatingHoursDetailed: [OperatingDay], status: String, categories: [Category],
                radius: Double, radiusUnit: String, dwell: Int, extraInfo: [String: String?],
                clientEventTypes: [ClientEventType], links: [String: String?],
                isFavorite: Bool, distance: Double, distanceUnit: String)
  • Struct representing Place Category related values.

    See more

    Declaration

    Swift

    public struct Category : Codable, Equatable
  • Client Event Types Enumeration.

    See more

    Declaration

    Swift

    public enum ClientEventType : String, Codable
  • Declaration

    Swift

    public init(from decoder: Decoder) throws