| | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | #import <FBSDKCoreKit/FBSDKCopying.h> |
| | | #import <FBSDKShareKit/FBSDKSharingValidation.h> |
| | | |
| | | /** |
| | | NS_ENUM(NSUInteger, FBSDKAppInviteDestination) |
| | |
| | | /** |
| | | A model for app invite. |
| | | */ |
| | | @interface FBSDKAppInviteContent : NSObject <FBSDKCopying, NSSecureCoding> |
| | | @interface FBSDKAppInviteContent : NSObject <FBSDKCopying, FBSDKSharingValidation, NSSecureCoding> |
| | | |
| | | /** |
| | | A URL to a preview image that will be displayed with the app invite |
| | |
| | | |
| | | /** |
| | | |
| | | - Warning:Use `appInvitePreviewImageURL` instead. |
| | | @warning Use `appInvitePreviewImageURL` instead. |
| | | */ |
| | | @property (nonatomic, copy) NSURL *previewImageURL __attribute__ ((deprecated("use appInvitePreviewImageURL instead"))); |
| | | @property (nonatomic, copy) NSURL *previewImageURL |
| | | DEPRECATED_MSG_ATTRIBUTE("use appInvitePreviewImageURL instead"); |
| | | |
| | | /** |
| | | Promotional code to be displayed while sending and receiving the invite. |
| | |
| | | |
| | | /** |
| | | 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; |
| | | |