FIRUserPropertyNames.h 818 B

12345678910111213
  1. /// @file FIRUserPropertyNames.h
  2. ///
  3. /// Predefined user property names.
  4. ///
  5. /// A UserProperty is an attribute that describes the app-user. By supplying UserProperties, you can
  6. /// later analyze different behaviors of various segments of your userbase. You may supply up to 25
  7. /// unique UserProperties per app, and you can use the name and value of your choosing for each one.
  8. /// UserProperty names can be up to 24 characters long, may only contain alphanumeric characters and
  9. /// underscores ("_"), and must start with an alphabetic character. UserProperty values can be up to
  10. /// 36 characters long. The "firebase_" prefix is reserved and should not be used.
  11. /// The method used to sign in. For example, "google", "facebook" or "twitter".
  12. static NSString *const kFIRUserPropertySignUpMethod = @"sign_up_method";