# SENTVenue

{% hint style="info" %}
This class is part of an [Early Access](https://github.com/sentiance/v4-docs/blob/main/sdk/api-reference/ios/user-context/broken-reference/README.md) feature, and is subject to change in the future.
{% endhint %}

```
@interface SENTVenue : NSObject <NSSecureCoding, NSCopying>
```

### location

Returns the location of the venue, as [SENTGeolocation](https://docs.sentiance.com/important-topics/sdk/api-reference/ios/sentgeolocation), if known. Otherwise returns nil. For example, this value will be nil if the venue significance is "point of interest."

```objectivec
@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](https://docs.sentiance.com/important-topics/sdk/api-reference/ios/event-timeline/sentvenuesignificance).

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

### venueType

Returns the type of the venue, as [SENTVenueType](https://docs.sentiance.com/important-topics/sdk/api-reference/ios/event-timeline/sentvenuetype).

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

### isEqualToVenue:

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