> For the complete documentation index, see [llms.txt](https://docs.sentiance.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sentiance.com/sdk/api-reference/ios/event-timeline/sentvenue.md).

# 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](/sdk/api-reference/ios/sentgeolocation.md), 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](/sdk/api-reference/ios/event-timeline/sentvenuesignificance.md).

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

### venueType

Returns the type of the venue, as [SENTVenueType](/sdk/api-reference/ios/event-timeline/sentvenuetype.md).

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

### isEqualToVenue:

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