MBXEventsBuilder_Internal.h 1.2 KB

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxCommon/MBXEventPriority_Internal.h>
  4. @class MBXEvent;
  5. NS_SWIFT_NAME(EventsBuilder)
  6. __attribute__((visibility ("default")))
  7. @interface MBXEventsBuilder : NSObject
  8. // This class provides custom init which should be called
  9. - (nonnull instancetype)init NS_UNAVAILABLE;
  10. // This class provides custom init which should be called
  11. + (nonnull instancetype)new NS_UNAVAILABLE;
  12. + (nonnull MBXEvent *)buildErrorEventForPriority:(MBXEventPriority)priority
  13. sdkIdentifier:(nonnull NSString *)sdkIdentifier
  14. sdkVersion:(nonnull NSString *)sdkVersion
  15. isSilent:(BOOL)isSilent
  16. buildType:(nullable NSString *)buildType
  17. threadDetails:(nullable NSString *)threadDetails
  18. appStartDate:(nullable NSString *)appStartDate
  19. customData:(nullable NSDictionary<NSString *, NSString *> *)customData __attribute((ns_returns_retained));
  20. @end