TTEntryPoint
@interface TTEntryPoint : NSObject
A representation of an element of the entryPoints field in json response.
-
The type of the entry point. Can be one of {
main
,minor
}.Declaration
Objective-C
@property (nonatomic, strong, readonly) NSString *type;
Swift
var type: String! { get }
-
Position of the entry point (latitude and longitude).
Declaration
Objective-C
@property (nonatomic, assign, unsafe_unretained, readonly) CLLocationCoordinate2D position;
Swift
var position: CLLocationCoordinate2D { get }