lpw
2023-06-14 2457d93622015b41229cd438bcde68c1bcf729c4
commit | author | age
d1f6ab 1 //
H 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