lpw
2022-02-15 2e29a3a585524a054640bb6e7bdf26fe77ba1f17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 * All rights reserved.
 *
 * This source code is licensed under the license found in the
 * LICENSE file in the root directory of this source tree.
 */
 
#if !TARGET_OS_TV
 
#import <Foundation/Foundation.h>
 
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#import <FBSDKShareKit/FBSDKGameRequestURLProvider.h>
#import <FBSDKShareKit/FBSDKSharingValidation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
/**
  A model for a game request.
 */
NS_SWIFT_NAME(GameRequestContent)
@interface FBSDKGameRequestContent : NSObject <NSCopying, NSObject, FBSDKSharingValidation, NSSecureCoding>
 
/**
  Used when defining additional context about the nature of the request.
 
 The parameter 'objectID' is required if the action type is either
 'FBSDKGameRequestSendActionType' or 'FBSDKGameRequestAskForActionType'.
 
- SeeAlso:objectID
 */
@property (nonatomic, assign) FBSDKGameRequestActionType actionType;
 
/**
  Compares the receiver to another game request content.
 @param content The other content
 @return YES if the receiver's values are equal to the other content's values; otherwise NO
 */
- (BOOL)isEqualToGameRequestContent:(FBSDKGameRequestContent *)content;
 
/**
  Additional freeform data you may pass for tracking. This will be stored as part of
 the request objects created. The maximum length is 255 characters.
 */
@property (nullable, nonatomic, copy) NSString *data;
 
/**
  This controls the set of friends someone sees if a multi-friend selector is shown.
 It is FBSDKGameRequestNoFilter by default, meaning that all friends can be shown.
 If specify as FBSDKGameRequestAppUsersFilter, only friends who use the app will be shown.
 On the other hands, use FBSDKGameRequestAppNonUsersFilter to filter only friends who do not use the app.
 
 The parameter name is preserved to be consistent with the counter part on desktop.
 */
@property (nonatomic, assign) FBSDKGameRequestFilter filters;
 
/**
  A plain-text message to be sent as part of the request. This text will surface in the App Center view
 of the request, but not on the notification jewel. Required parameter.
 */
@property (nonatomic, copy) NSString *message;
 
/**
  The Open Graph object ID of the object being sent.
 
- SeeAlso:actionType
 */
@property (nonatomic, copy) NSString *objectID;
 
/**
  An array of user IDs, usernames or invite tokens (NSString) of people to send request.
 
 These may or may not be a friend of the sender. If this is specified by the app,
 the sender will not have a choice of recipients. If not, the sender will see a multi-friend selector
 
 This is equivalent to the "to" parameter when using the web game request dialog.
 */
@property (nonatomic, copy) NSArray<NSString *> *recipients;
 
/**
  An array of user IDs that will be included in the dialog as the first suggested friends.
 Cannot be used together with filters.
 
 This is equivalent to the "suggestions" parameter when using the web game request dialog.
*/
@property (nonatomic, copy) NSArray<NSString *> *recipientSuggestions;
 
/**
  The title for the dialog.
 */
@property (nonatomic, copy) NSString *title;
 
/**
  The call to action for the dialog.
 */
@property (nonatomic, copy) NSString *cta;
 
@end
 
NS_ASSUME_NONNULL_END
 
#endif