MBXEvent_Internal.h 954 B

1234567891011121314151617181920212223242526
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxCommon/MBXEventPriority_Internal.h>
  4. @class MBXDeferredDeliveryRequestOptions;
  5. NS_SWIFT_NAME(Event)
  6. __attribute__((visibility ("default")))
  7. @interface MBXEvent : 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 instancetype)initWithPriority:(MBXEventPriority)priority
  13. attributes:(nonnull id)attributes
  14. deferredOptions:(nullable MBXDeferredDeliveryRequestOptions *)deferredOptions;
  15. @property (nonatomic, readwrite) MBXEventPriority priority;
  16. @property (nonatomic, readonly, nonnull, copy) id attributes;
  17. @property (nonatomic, readonly, nullable) MBXDeferredDeliveryRequestOptions *deferredOptions;
  18. @end