lpw
2024-09-25 2f0847c51cfe186abd2c4fc554108edc1890d222
commit | author | age
dcdc07 1 //
W 2 //  WAFBAppInviteContent.h
3 //  WASdkIntfUI
4 //
5 //  Created by wuyx on 16/3/15.
6 //  Copyright © 2016年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 /*!
11  @discussion WAAppInviteContent
12  - - -
13  */
14 @interface WAAppInviteContent : NSObject
15 /*!
16  @abstract A URL to a preview image that will be displayed with the app invite
17  
18  @discussion This is optional.  If you don't include it a fallback image will be used.
19  */
20 @property (nonatomic, strong) NSURL *appInvitePreviewImageURL;
21
22 /*!
23  @abstract An app link target that will be used as a target when the user accept the invite.
24  
25  @discussion This is a requirement.
26  */
27 @property (nonatomic, strong) NSURL *appLinkURL;
28 @end