InstagramLocation

public struct InstagramLocation<T> : Decodable where T : Decodable

The struct containing an Instagram location.

  • id

    The location identifier.

    Declaration

    Swift

    public let id: T
  • The location name.

    Declaration

    Swift

    public let name: String
  • The location address.

    Declaration

    Swift

    public let streetAddress: String?
  • The location coordinates (latitude and longitude).

    Declaration

    Swift

    public let coordinates: CLLocationCoordinate2D
  • Declaration

    Swift

    public init(from decoder: Decoder) throws