SITEvent
@interface SITEvent : NSObject
An event: POI with radius, conversion area and asociated statistics. It is intended for usage in marketing apps
-
This is a unique identifier of each event
Declaration
Objective-C
@property (readwrite, strong, nonatomic) NSNumber *_Nonnull identifier;
-
Name
Declaration
Objective-C
@property (readwrite, strong, nonatomic) NSString *_Nonnull name;
-
Date containing the time when a resource was first created.
Declaration
Objective-C
@property (readwrite, strong, nonatomic) NSDate *_Nonnull createdAt;
-
Date containing the time when a resource was last updated.
Declaration
Objective-C
@property (readwrite, strong, nonatomic) NSDate *_Nonnull updatedAt;
-
Additional information about the SITEvent
Declaration
Objective-C
@property (readwrite, strong, nonatomic) NSString *_Nonnull info;
-
Link to a website displaying relating info about the event
Declaration
Objective-C
@property (readwrite, strong, nonatomic) NSString *_Nonnull url;
-
The area inside the SITIndoorBuilding where the event should be fired.
Declaration
Objective-C
@property (readwrite, strong, nonatomic) SITCircularArea *_Nonnull trigger;
-
The area inside the SITIndoorBuilding where the event should be considered as converted
Declaration
Objective-C
@property (readwrite, strong, nonatomic) SITCircularArea *_Nonnull conversion;
-
Custom fields that can be added from the Dashboard
Declaration
Objective-C
@property (readwrite, strong, nonatomic) NSDictionary<NSString *, NSString *> *_Nonnull customFields;