SFS2X Objective-C API  1.7.13
iOS / macOS / tvOS
SetUserVariablesRequest.h
1 //
2 // SetUserVariablesRequest.h
3 // SFS2X
4 //
5 // Original development by Infosfer Game Technologies Ltd. | http://www.infosfer.com.
6 //
7 // Maintained and developed by A51 Integrated.
8 // Copyright 2012 A51 Integrated | http://a51integrated.com. All rights reserved.
9 //
10 
11 
12 #import "BaseRequest.h"
13 
14 EXTERN NSString * const SetUserVariablesRequest_KEY_USER;
15 EXTERN NSString * const SetUserVariablesRequest_KEY_VAR_LIST;
16 
17 /** Set custom User Variables for the current User
18 
19  @see SFSUserVariable
20  */
21 @interface SetUserVariablesRequest : BaseRequest {
22 @private
23 
24  NSArray *_userVariables;
25 }
26 
27 @property (strong) NSArray *userVariables;
28 
29 -(id)initWithUserVariables:(NSArray *)userVariables;
30 /**
31 
32  @param userVariables an Array of UserVariables
33 
34  @see SFSUserVariable
35  */
36 +(id)requestWithUserVariables:(NSArray *)userVariables;
37 
38 @end
SetUserVariablesRequest
Definition: SetUserVariablesRequest.h:21