RecaptchaActionType
NS_ENUM(NSInteger, RecaptchaActionType) {
  /** Indicates that the protected action is a Login workflow. */
  RecaptchaActionTypeLogin = 0,
  /** Indicates that the protected action is a Signup workflow. */
  RecaptchaActionTypeSignup = 1,
  /** When a custom action is specified, reCAPTCHA uses this value automatically. */
  RecaptchaActionTypeOther = 2,
}Undocumented
- 
                  
                  Indicates that the protected action is a Login workflow. DeclarationSwift case login = 0Objective-C RecaptchaActionTypeLogin = 0
- 
                  
                  Indicates that the protected action is a Signup workflow. DeclarationSwift case signup = 1Objective-C RecaptchaActionTypeSignup = 1
- 
                  
                  When a custom action is specified, reCAPTCHA uses this value automatically. DeclarationSwift case other = 2Objective-C RecaptchaActionTypeOther = 2