UNPKG

752 Btext/x-cView Raw
1//
2// BranchUniversalObject+RNBranch.h
3// RNBranch
4//
5// Created by Jimmy Dee on 1/26/17.
6// Copyright © 2017 Branch Metrics. All rights reserved.
7//
8
9#import <Branch/Branch.h>
10
11@class RNBranchProperty;
12
13@interface BranchUniversalObject(RNBranch)
14
15- (instancetype)initWithMap:(NSDictionary *)map;
16
17- (void)setAutomaticallyListOnSpotlightWithNumber:(NSNumber *)automaticallyListOnSpotlight;
18- (void)setContentIndexingMode:(NSString *)contentIndexingMode;
19- (void)setExpirationDateWithString:(NSString *)expirationDate;
20- (void)setPriceWithNumber:(NSNumber *)price;
21- (void)setLocallyIndexWithNumber:(NSNumber *)locallyIndex;
22- (void)setPubliclyIndexWithNumber:(NSNumber *)publiclyIndex;
23- (void)setContentMetadataWithMap:(NSDictionary *)map;
24
25@end