@@ -204,45 +204,11 @@ interface BNCPreferenceHelper
204204 [ Export ( "getEndpointFromURL:" ) ]
205205 string GetEndpointFromURL ( string url ) ;
206206
207- // -(void)clearUserCreditsAndCounts;
208- [ Export ( "clearUserCreditsAndCounts" ) ]
209- void ClearUserCreditsAndCounts ( ) ;
210-
211- // -(void)clearUserCredits;
212- [ Export ( "clearUserCredits" ) ]
213- void ClearUserCredits ( ) ;
214-
215207 // -(id)getBranchUniversalLinkDomains;
216208 [ Export ( "getBranchUniversalLinkDomains" ) ]
217209 //[Verify(MethodToProperty)]
218210 NSObject BranchUniversalLinkDomains { get ; }
219211
220- // -(void)setCreditCount:(NSInteger)count;
221- [ Export ( "setCreditCount:" ) ]
222- void SetCreditCount ( nint count ) ;
223-
224- // -(void)setCreditCount:(NSInteger)count forBucket:(NSString *)bucket;
225- [ Export ( "setCreditCount:forBucket:" ) ]
226- void SetCreditCount ( nint count , string bucket ) ;
227-
228- // -(void)removeCreditCountForBucket:(NSString *)bucket;
229- [ Export ( "removeCreditCountForBucket:" ) ]
230- void RemoveCreditCountForBucket ( string bucket ) ;
231-
232- // -(NSDictionary *)getCreditDictionary;
233- [ Export ( "getCreditDictionary" ) ]
234- //[Verify(MethodToProperty)]
235- NSDictionary CreditDictionary { get ; }
236-
237- // -(NSInteger)getCreditCount;
238- [ Export ( "getCreditCount" ) ]
239- //[Verify(MethodToProperty)]
240- nint CreditCount { get ; }
241-
242- // -(NSInteger)getCreditCountForBucket:(NSString *)bucket;
243- [ Export ( "getCreditCountForBucket:" ) ]
244- nint GetCreditCountForBucket ( string bucket ) ;
245-
246212 // -(void)setRequestMetadataKey:(NSString *)key value:(NSObject *)value;
247213 [ Export ( "setRequestMetadataKey:value:" ) ]
248214 void SetRequestMetadataKey ( string key , NSObject value ) ;
@@ -1632,10 +1598,6 @@ partial interface Constants
16321598 [ Field ( "BRANCH_REQUEST_KEY_REFERRAL_USAGE_TYPE" , "__Internal" ) ]
16331599 NSString BRANCH_REQUEST_KEY_REFERRAL_USAGE_TYPE { get ; }
16341600
1635- // extern NSString *const BRANCH_REQUEST_KEY_REFERRAL_REWARD_LOCATION;
1636- [ Field ( "BRANCH_REQUEST_KEY_REFERRAL_REWARD_LOCATION" , "__Internal" ) ]
1637- NSString BRANCH_REQUEST_KEY_REFERRAL_REWARD_LOCATION { get ; }
1638-
16391601 // extern NSString *const BRANCH_REQUEST_KEY_REFERRAL_TYPE;
16401602 [ Field ( "BRANCH_REQUEST_KEY_REFERRAL_TYPE" , "__Internal" ) ]
16411603 NSString BRANCH_REQUEST_KEY_REFERRAL_TYPE { get ; }
@@ -1820,18 +1782,6 @@ partial interface Constants
18201782 [ Field ( "BRANCH_REQUEST_ENDPOINT_USER_COMPLETED_ACTION" , "__Internal" ) ]
18211783 NSString BRANCH_REQUEST_ENDPOINT_USER_COMPLETED_ACTION { get ; }
18221784
1823- // extern NSString *const BRANCH_REQUEST_ENDPOINT_LOAD_REWARDS;
1824- [ Field ( "BRANCH_REQUEST_ENDPOINT_LOAD_REWARDS" , "__Internal" ) ]
1825- NSString BRANCH_REQUEST_ENDPOINT_LOAD_REWARDS { get ; }
1826-
1827- // extern NSString *const BRANCH_REQUEST_ENDPOINT_REDEEM_REWARDS;
1828- [ Field ( "BRANCH_REQUEST_ENDPOINT_REDEEM_REWARDS" , "__Internal" ) ]
1829- NSString BRANCH_REQUEST_ENDPOINT_REDEEM_REWARDS { get ; }
1830-
1831- // extern NSString *const BRANCH_REQUEST_ENDPOINT_CREDIT_HISTORY;
1832- [ Field ( "BRANCH_REQUEST_ENDPOINT_CREDIT_HISTORY" , "__Internal" ) ]
1833- NSString BRANCH_REQUEST_ENDPOINT_CREDIT_HISTORY { get ; }
1834-
18351785 // extern NSString *const BRANCH_REQUEST_ENDPOINT_GET_SHORT_URL;
18361786 [ Field ( "BRANCH_REQUEST_ENDPOINT_GET_SHORT_URL" , "__Internal" ) ]
18371787 NSString BRANCH_REQUEST_ENDPOINT_GET_SHORT_URL { get ; }
@@ -2625,10 +2575,6 @@ partial interface Constants
26252575 [ Field ( "BranchStandardEventPurchase" , "__Internal" ) ]
26262576 NSString BranchStandardEventPurchase { get ; }
26272577
2628- // extern BranchStandardEvent _Nonnull BranchStandardEventSpendCredits;
2629- [ Field ( "BranchStandardEventSpendCredits" , "__Internal" ) ]
2630- NSString BranchStandardEventSpendCredits { get ; }
2631-
26322578 // extern BranchStandardEvent _Nonnull BranchStandardEventSubscribe;
26332579 [ Field ( "BranchStandardEventSubscribe" , "__Internal" ) ]
26342580 NSString BranchStandardEventSubscribe { get ; }
@@ -3579,52 +3525,6 @@ interface Branch
35793525 [ Export ( "logoutWithCallback:" ) ]
35803526 void LogoutWithCallback ( [ NullAllowed ] callbackWithStatus callback ) ;
35813527
3582- // -(void)loadRewardsWithCallback:(callbackWithStatus _Nullable)callback;
3583- [ Export ( "loadRewardsWithCallback:" ) ]
3584- void LoadRewardsWithCallback ( [ NullAllowed ] callbackWithStatus callback ) ;
3585-
3586- // -(void)redeemRewards:(NSInteger)count;
3587- [ Export ( "redeemRewards:" ) ]
3588- void RedeemRewards ( nint count ) ;
3589-
3590- // -(void)redeemRewards:(NSInteger)count callback:(callbackWithStatus _Nullable)callback;
3591- [ Export ( "redeemRewards:callback:" ) ]
3592- void RedeemRewards ( nint count , [ NullAllowed ] callbackWithStatus callback ) ;
3593-
3594- // -(void)redeemRewards:(NSInteger)count forBucket:(NSString * _Nullable)bucket;
3595- [ Export ( "redeemRewards:forBucket:" ) ]
3596- void RedeemRewards ( nint count , [ NullAllowed ] string bucket ) ;
3597-
3598- // -(void)redeemRewards:(NSInteger)count forBucket:(NSString * _Nullable)bucket callback:(callbackWithStatus _Nullable)callback;
3599- [ Export ( "redeemRewards:forBucket:callback:" ) ]
3600- void RedeemRewards ( nint count , [ NullAllowed ] string bucket , [ NullAllowed ] callbackWithStatus callback ) ;
3601-
3602- // -(NSInteger)getCredits;
3603- [ Export ( "getCredits" ) ]
3604- //[Verify(MethodToProperty)]
3605- //nint Credits { get; }
3606- nint Credits ( ) ;
3607-
3608- // -(NSInteger)getCreditsForBucket:(NSString * _Nonnull)bucket;
3609- [ Export ( "getCreditsForBucket:" ) ]
3610- nint GetCreditsForBucket ( string bucket ) ;
3611-
3612- // -(void)getCreditHistoryWithCallback:(callbackWithList _Nullable)callback;
3613- [ Export ( "getCreditHistoryWithCallback:" ) ]
3614- void GetCreditHistoryWithCallback ( [ NullAllowed ] callbackWithList callback ) ;
3615-
3616- // -(void)getCreditHistoryForBucket:(NSString * _Nullable)bucket andCallback:(callbackWithList _Nullable)callback;
3617- [ Export ( "getCreditHistoryForBucket:andCallback:" ) ]
3618- void GetCreditHistoryForBucket ( [ NullAllowed ] string bucket , [ NullAllowed ] callbackWithList callback ) ;
3619-
3620- // -(void)getCreditHistoryAfter:(NSString * _Nullable)creditTransactionId number:(NSInteger)length order:(BranchCreditHistoryOrder)order andCallback:(callbackWithList _Nullable)callback;
3621- [ Export ( "getCreditHistoryAfter:number:order:andCallback:" ) ]
3622- void GetCreditHistoryAfter ( [ NullAllowed ] string creditTransactionId , nint length , BranchCreditHistoryOrder order , [ NullAllowed ] callbackWithList callback ) ;
3623-
3624- // -(void)getCreditHistoryForBucket:(NSString * _Nullable)bucket after:(NSString * _Nullable)creditTransactionId number:(NSInteger)length order:(BranchCreditHistoryOrder)order andCallback:(callbackWithList _Nullable)callback;
3625- [ Export ( "getCreditHistoryForBucket:after:number:order:andCallback:" ) ]
3626- void GetCreditHistoryForBucket ( [ NullAllowed ] string bucket , [ NullAllowed ] string creditTransactionId , nint length , BranchCreditHistoryOrder order , [ NullAllowed ] callbackWithList callback ) ;
3627-
36283528 // -(void)userCompletedAction:(NSString * _Nullable)action;
36293529 [ Export ( "userCompletedAction:" ) ]
36303530 void UserCompletedAction ( [ NullAllowed ] string action ) ;
0 commit comments