hank
2019-06-20 e81c27b13950ca02baa879ae7b8108c0c3ef7fb0
frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h
@@ -19,6 +19,9 @@
#import <Foundation/Foundation.h>
#import <FBSDKCoreKit/FBSDKCopying.h>
#import <FBSDKShareKit/FBSDKSharingValidation.h>
NS_ASSUME_NONNULL_BEGIN
/**
 NS_ENUM(NSUInteger, FBSDKAppInviteDestination)
@@ -30,12 +33,13 @@
  FBSDKAppInviteDestinationFacebook = 0,
  /** Deliver to Messenger. */
  FBSDKAppInviteDestinationMessenger,
};
} NS_SWIFT_NAME(AppInviteDestination);
/**
  A model for app invite.
 */
@interface FBSDKAppInviteContent : NSObject <FBSDKCopying, NSSecureCoding>
NS_SWIFT_NAME(AppInviteContent)
@interface FBSDKAppInviteContent : NSObject <FBSDKCopying, FBSDKSharingValidation, NSSecureCoding>
/**
  A URL to a preview image that will be displayed with the app invite
@@ -43,7 +47,7 @@
 This is optional.  If you don't include it a fallback image will be used.
*/
@property (nonatomic, copy) NSURL *appInvitePreviewImageURL;
@property (nonatomic, copy, nullable) NSURL *appInvitePreviewImageURL;
/**
  An app link target that will be used as a target when the user accept the invite.
@@ -54,19 +58,13 @@
@property (nonatomic, copy) NSURL *appLinkURL;
/**
- Warning:Use `appInvitePreviewImageURL` instead.
 */
@property (nonatomic, copy) NSURL *previewImageURL __attribute__ ((deprecated("use appInvitePreviewImageURL instead")));
/**
  Promotional code to be displayed while sending and receiving the invite.
 This is optional. This can be between 0 and 10 characters long and can contain
 alphanumeric characters only. To set a promo code, you need to set promo text.
 */
@property (nonatomic, copy) NSString *promotionCode;
@property (nonatomic, copy, nullable) NSString *promotionCode;
/**
  Promotional text to be displayed while sending and receiving the invite.
@@ -75,7 +73,7 @@
 This is optional. This can be between 0 and 80 characters long and can contain
 alphanumeric and spaces only.
 */
@property (nonatomic, copy) NSString *promotionText;
@property (nonatomic, copy, nullable) NSString *promotionText;
/**
  Destination for the app invite.
@@ -83,13 +81,15 @@
 This is optional and for declaring destination of the invite.
 */
@property FBSDKAppInviteDestination destination;
@property (nonatomic, assign) FBSDKAppInviteDestination destination;
/**
  Compares the receiver to another app invite content.
 - Parameter content: The other content
 - Returns: YES if the receiver's values are equal to the other content's values; otherwise NO
 @param content The other content
 @return YES if the receiver's values are equal to the other content's values; otherwise NO
 */
- (BOOL)isEqualToAppInviteContent:(FBSDKAppInviteContent *)content;
@end
NS_ASSUME_NONNULL_END