commit | author | age
|
e0ec42
|
1 |
/* |
L |
2 |
* Copyright (c) Meta Platforms, Inc. and affiliates. |
|
3 |
* All rights reserved. |
|
4 |
* |
|
5 |
* This source code is licensed under the license found in the |
|
6 |
* LICENSE file in the root directory of this source tree. |
|
7 |
*/ |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
|
|
11 |
/* |
|
12 |
@methodgroup Predefined values to assign to event parameters that accompany events logged through the `logEvent` family |
|
13 |
of methods on `FBSDKAppEvents`. Common event parameters are provided in the `FBSDKAppEventParameterName*` constants. |
|
14 |
*/ |
|
15 |
|
|
16 |
/// typedef for FBSDKAppEventParameterValue |
|
17 |
typedef NSString *const FBSDKAppEventParameterValue NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterValue); |
|
18 |
|
|
19 |
/// Yes-valued parameter value to be used with parameter keys that need a Yes/No value |
|
20 |
FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueYes; |
|
21 |
|
|
22 |
/// No-valued parameter value to be used with parameter keys that need a Yes/No value |
|
23 |
FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueNo; |