SITRealTimeRequest

@interface SITRealTimeRequest : NSObject

A data object that contains parameters for the real time service (SITRealTimeManager)

  • The identifier of the building (can be obtained on SITResource identifier property of a SITBuilding object)

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *_Nonnull buildingIdentifier;
  • Integer value (in seconds) that determine the interval rate of refreshing

    Note

    This value cannot be smaller than 3 seconds nor greater than 20 seconds (In case you provide a number smaller than 3 seconds, this minimum will be applied. This is also de default value. In case you provide a value greater than 20 seconds, 20 seconds will be applied.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) NSInteger updateInterval;