hank
2018-08-30 9f077bbd393b5c47afbbfd83454f6a08a6345dbd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 *  Copyright (c) 2014, Facebook, Inc.
 *  All rights reserved.
 *
 *  This source code is licensed under the BSD-style license found in the
 *  LICENSE file in the root directory of this source tree. An additional grant
 *  of patent rights can be found in the PATENTS file in the same directory.
 *
 */
 
#import <Foundation/Foundation.h>
 
/*!
 Represents a target defined in App Link metadata, consisting of at least
 a URL, and optionally an App Store ID and name.
 */
@interface BFAppLinkTarget : NSObject
 
/*! Creates a BFAppLinkTarget with the given app site and target URL. */
+ (instancetype)appLinkTargetWithURL:(NSURL *)url
                          appStoreId:(NSString *)appStoreId
                             appName:(NSString *)appName;
 
/*! The URL prefix for this app link target */
@property (nonatomic, strong, readonly) NSURL *URL;
 
/*! The app ID for the app store */
@property (nonatomic, copy, readonly) NSString *appStoreId;
 
/*! The name of the app */
@property (nonatomic, copy, readonly) NSString *appName;
 
@end