FBSDKAppEventParameterValue.h 986 B

1234567891011121314151617181920212223
  1. /*
  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. #import <Foundation/Foundation.h>
  9. /*
  10. @methodgroup Predefined values to assign to event parameters that accompany events logged through the `logEvent` family
  11. of methods on `FBSDKAppEvents`. Common event parameters are provided in the `FBSDKAppEventParameterName*` constants.
  12. */
  13. /// typedef for FBSDKAppEventParameterValue
  14. typedef NSString *const FBSDKAppEventParameterValue NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterValue);
  15. /// Yes-valued parameter value to be used with parameter keys that need a Yes/No value
  16. FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueYes;
  17. /// No-valued parameter value to be used with parameter keys that need a Yes/No value
  18. FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueNo;