SENTVenue

Represents a place of interest.

This class is part of an Early Access feature, and is subject to change in the future.

@interface SENTVenue : NSObject <NSSecureCoding, NSCopying>

location

Returns the location of the venue, as SENTGeolocation, if known. Otherwise returns nil. For example, this value will be nil if the venue significance is "point of interest."

@property (nonatomic, strong, nullable, readonly) SENTGeolocation *location;

significance

Returns the significance of the venue (i.e. home, work, or a point of interest), as SENTVenueSignificance.

@property (nonatomic, assign, readonly) SENTVenueSignificance significance;

venueType

Returns the type of the venue, as SENTVenueType.

@property (nonatomic, assign, readonly) SENTVenueType type;

isEqualToVenue:

- (BOOL)isEqualToVenue:(SENTVenue *)venue;

Last updated