SITBuildingInfo

@interface SITBuildingInfo : NSObject

A building and its dependencies: floors, POIs and events

  • Building, without its dependencies

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) SITBuilding *_Nonnull building;
  • Array containing the floors of the building. See SITFloor for more info

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSArray<SITFloor *> *_Nonnull floors;
  • Array containing the indoor POIs of the building. See SITPOI for more info

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSArray<SITPOI *> *_Nonnull indoorPois;
  • Array containing the outdoor POIs of the building. See SITPOI for more info

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSArray<SITPOI *> *_Nonnull outdoorPois;
  • Array containing the events of the building. See SITEvent for more info

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSArray<SITEvent *> *_Nonnull events;