| 123456789101112131415161718192021222324252627 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- @class MBXDeferredDeliveryServiceOptions;
- NS_SWIFT_NAME(EventsServerOptions)
- __attribute__((visibility ("default")))
- @interface MBXEventsServerOptions : NSObject
- // This class provides custom init which should be called
- - (nonnull instancetype)init NS_UNAVAILABLE;
- // This class provides custom init which should be called
- + (nonnull instancetype)new NS_UNAVAILABLE;
- - (nonnull instancetype)initWithToken:(nonnull NSString *)token
- userAgentFragment:(nonnull NSString *)userAgentFragment
- deferredDeliveryServiceOptions:(nullable MBXDeferredDeliveryServiceOptions *)deferredDeliveryServiceOptions;
- @property (nonatomic, readonly, nonnull, copy) NSString *token;
- @property (nonatomic, readonly, nonnull, copy) NSString *userAgentFragment;
- @property (nonatomic, readonly, nullable) MBXDeferredDeliveryServiceOptions *deferredDeliveryServiceOptions;
- - (BOOL)isEqualToEventsServerOptions:(nonnull MBXEventsServerOptions *)other;
- @end
|