TTGeofencingReportFenceDetails
@interface TTGeofencingReportFenceDetails : NSObject
Details of the fence and its position in relation to the provided point. @BETA
-
The id and name of the fence.
Declaration
Objective-C
@property (readonly, strong, nonatomic) TTGeofencingReportEntity *_Nonnull entity;
Swift
var entity: TTGeofencingReportEntity { get }
-
The distance in meters from the point passed in the request to the closest point of the fence.
Declaration
Objective-C
@property (readonly, assign, nonatomic) double distance;
Swift
var distance: Double { get }
-
The point of the fence that’s the closes to the point passed in the request.
Declaration
Objective-C
@property(nonatomic, strong, readonly) TTLocation *_Nonnull closestPoint
Swift
var closestPoint: UnsafeMutablePointer<Int32> { get }