MBXEventsServerOptions_Internal.h 1.0 KB

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBXDeferredDeliveryServiceOptions;
  4. NS_SWIFT_NAME(EventsServerOptions)
  5. __attribute__((visibility ("default")))
  6. @interface MBXEventsServerOptions : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithToken:(nonnull NSString *)token
  12. userAgentFragment:(nonnull NSString *)userAgentFragment
  13. deferredDeliveryServiceOptions:(nullable MBXDeferredDeliveryServiceOptions *)deferredDeliveryServiceOptions;
  14. @property (nonatomic, readonly, nonnull, copy) NSString *token;
  15. @property (nonatomic, readonly, nonnull, copy) NSString *userAgentFragment;
  16. @property (nonatomic, readonly, nullable) MBXDeferredDeliveryServiceOptions *deferredDeliveryServiceOptions;
  17. - (BOOL)isEqualToEventsServerOptions:(nonnull MBXEventsServerOptions *)other;
  18. @end