lpw
2021-04-20 b19a78b27247f5f0761c35b5b3e8a41876eabb05
commit | author | age
bad748 1 // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
W 2 //
3 // You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
4 // copy, modify, and distribute this software in source code or binary form for use
5 // in connection with the web services and APIs provided by Facebook.
6 //
7 // As with any software that integrates with the Facebook platform, your use of
8 // this software is subject to the Facebook Developer Principles and Policies
9 // [http://developers.facebook.com/policy/]. This copyright notice shall be
10 // included in all copies or substantial portions of the software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
14 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
15 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
17 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
49b883 19 #import "TargetConditionals.h"
L 20
21 #if !TARGET_OS_TV
22
bad748 23 #import <Foundation/Foundation.h>
W 24
49b883 25 #import "FBSDKCoreKitImport.h"
L 26
27 #import "FBSDKSharingValidation.h"
bad748 28
e81c27 29 NS_ASSUME_NONNULL_BEGIN
H 30
9febd9 31 /**
W 32  NS_ENUM(NSUInteger, FBSDKGameRequestActionType)
33   Additional context about the nature of the request.
bad748 34  */
W 35 typedef NS_ENUM(NSUInteger, FBSDKGameRequestActionType)
36 {
9febd9 37   /** No action type */
bad748 38   FBSDKGameRequestActionTypeNone = 0,
9febd9 39   /** Send action type: The user is sending an object to the friends. */
bad748 40   FBSDKGameRequestActionTypeSend,
9febd9 41   /** Ask For action type: The user is asking for an object from friends. */
bad748 42   FBSDKGameRequestActionTypeAskFor,
9febd9 43   /** Turn action type: It is the turn of the friends to play against the user in a match. (no object) */
bad748 44   FBSDKGameRequestActionTypeTurn,
e81c27 45 } NS_SWIFT_NAME(GameRequestActionType);
bad748 46
9febd9 47 /**
W 48  NS_ENUM(NSUInteger, FBSDKGameRequestFilters)
49   Filter for who can be displayed in the multi-friend selector.
bad748 50  */
W 51 typedef NS_ENUM(NSUInteger, FBSDKGameRequestFilter)
52 {
9febd9 53   /** No filter, all friends can be displayed. */
bad748 54   FBSDKGameRequestFilterNone = 0,
9febd9 55   /** Friends using the app can be displayed. */
bad748 56   FBSDKGameRequestFilterAppUsers,
9febd9 57   /** Friends not using the app can be displayed. */
bad748 58   FBSDKGameRequestFilterAppNonUsers,
e81c27 59 } NS_SWIFT_NAME(GameRequestFilter);
bad748 60
9febd9 61 /**
W 62   A model for a game request.
bad748 63  */
e81c27 64 NS_SWIFT_NAME(GameRequestContent)
13e53a 65 @interface FBSDKGameRequestContent : NSObject <FBSDKCopying, FBSDKSharingValidation, NSSecureCoding>
bad748 66
9febd9 67 /**
W 68   Used when defining additional context about the nature of the request.
69
70  The parameter 'objectID' is required if the action type is either
bad748 71  'FBSDKGameRequestSendActionType' or 'FBSDKGameRequestAskForActionType'.
9febd9 72
W 73 - SeeAlso:objectID
bad748 74  */
W 75 @property (nonatomic, assign) FBSDKGameRequestActionType actionType;
76
9febd9 77 /**
W 78   Compares the receiver to another game request content.
13e53a 79  @param content The other content
H 80  @return YES if the receiver's values are equal to the other content's values; otherwise NO
bad748 81  */
W 82 - (BOOL)isEqualToGameRequestContent:(FBSDKGameRequestContent *)content;
83
9febd9 84 /**
W 85   Additional freeform data you may pass for tracking. This will be stored as part of
bad748 86  the request objects created. The maximum length is 255 characters.
W 87  */
e81c27 88 @property (nonatomic, copy, nullable) NSString *data;
bad748 89
9febd9 90 /**
W 91   This controls the set of friends someone sees if a multi-friend selector is shown.
bad748 92  It is FBSDKGameRequestNoFilter by default, meaning that all friends can be shown.
W 93  If specify as FBSDKGameRequestAppUsersFilter, only friends who use the app will be shown.
94  On the other hands, use FBSDKGameRequestAppNonUsersFilter to filter only friends who do not use the app.
9febd9 95
W 96  The parameter name is preserved to be consistent with the counter part on desktop.
bad748 97  */
W 98 @property (nonatomic, assign) FBSDKGameRequestFilter filters;
99
9febd9 100 /**
W 101   A plain-text message to be sent as part of the request. This text will surface in the App Center view
bad748 102  of the request, but not on the notification jewel. Required parameter.
W 103  */
104 @property (nonatomic, copy) NSString *message;
105
9febd9 106 /**
W 107   The Open Graph object ID of the object being sent.
108
109 - SeeAlso:actionType
bad748 110  */
W 111 @property (nonatomic, copy) NSString *objectID;
112
9febd9 113 /**
W 114   An array of user IDs, usernames or invite tokens (NSString) of people to send request.
115
116  These may or may not be a friend of the sender. If this is specified by the app,
bad748 117  the sender will not have a choice of recipients. If not, the sender will see a multi-friend selector
W 118
119  This is equivalent to the "to" parameter when using the web game request dialog.
120  */
e81c27 121 @property (nonatomic, copy) NSArray<NSString *> *recipients;
bad748 122
9febd9 123 /**
W 124   An array of user IDs that will be included in the dialog as the first suggested friends.
bad748 125  Cannot be used together with filters.
9febd9 126
W 127  This is equivalent to the "suggestions" parameter when using the web game request dialog.
bad748 128 */
e81c27 129 @property (nonatomic, copy) NSArray<NSString *> *recipientSuggestions;
bad748 130
9febd9 131 /**
W 132   The title for the dialog.
bad748 133  */
W 134 @property (nonatomic, copy) NSString *title;
135
136 @end
e81c27 137
H 138 NS_ASSUME_NONNULL_END
49b883 139
L 140 #endif