BDZoneEntryEvent

@interface BDZoneEntryEvent : NSObject

Contains information about a Zone Entry Event

A BDZoneEntryEvent objects will be delivered to your application’s BDPGeoTriggeringEventDelegate when Geotriggering event occurs (for e.g. fence entry and exit events).

  • The Fence that was entered into

    Declaration

    Objective-C

    @property (copy, readonly) BDFenceInfo *_Nonnull fence;
  • The Zone that was entered into

    Declaration

    Objective-C

    @property (copy, readonly) BDZoneInfo *_Nonnull zone;
  • Location of the Zone Entry event

    Declaration

    Objective-C

    @property (copy, readonly) BDLocationInfo *_Nonnull location;
  • Indicates whether the Zone is tracking for exit event

    Declaration

    Objective-C

    @property (readonly) BOOL isExitEnabled;
  • Custom data for the entry event

    Declaration

    Objective-C

    @property (readonly) NSDictionary *customData;