init
This commit is contained in:
28
Assets/Adjust/iOS/ADJThirdPartySharing.h
Normal file
28
Assets/Adjust/iOS/ADJThirdPartySharing.h
Normal file
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// ADJThirdPartySharing.h
|
||||
// AdjustSdk
|
||||
//
|
||||
// Created by Pedro S. on 02.12.20.
|
||||
// Copyright © 2020 adjust GmbH. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface ADJThirdPartySharing : NSObject
|
||||
|
||||
@property (nonatomic, nullable, readonly, strong) NSNumber *enabled;
|
||||
@property (nonatomic, nonnull, readonly, strong) NSMutableDictionary *granularOptions;
|
||||
@property (nonatomic, nonnull, readonly, strong) NSMutableDictionary *partnerSharingSettings;
|
||||
|
||||
- (nullable id)initWithIsEnabledNumberBool:(nullable NSNumber *)isEnabledNumberBool;
|
||||
|
||||
- (void)addGranularOption:(nonnull NSString *)partnerName
|
||||
key:(nonnull NSString *)key
|
||||
value:(nonnull NSString *)value;
|
||||
|
||||
- (void)addPartnerSharingSetting:(nonnull NSString *)partnerName
|
||||
key:(nonnull NSString *)key
|
||||
value:(BOOL)value;
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user