static bool n_RestoreAuthentication_Lorg_json_JSONObject_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
        {
            global::Com.Parse.Auth.IParseAuthenticationProvider __this = global::Java.Lang.Object.GetObject <global::Com.Parse.Auth.IParseAuthenticationProvider> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            global::Org.Json.JSONObject p0 = global::Java.Lang.Object.GetObject <global::Org.Json.JSONObject> (native_p0, JniHandleOwnership.DoNotTransfer);
            bool __ret = __this.RestoreAuthentication(p0);

            return(__ret);
        }
 static void n_Authenticate_Lcom_parse_auth_ParseAuthenticationProvider_ParseAuthenticationCallback_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Parse.Auth.IParseAuthenticationProvider __this = global::Java.Lang.Object.GetObject <global::Com.Parse.Auth.IParseAuthenticationProvider> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Parse.Auth.IParseAuthenticationProviderParseAuthenticationCallback p0 = (global::Com.Parse.Auth.IParseAuthenticationProviderParseAuthenticationCallback)global::Java.Lang.Object.GetObject <global::Com.Parse.Auth.IParseAuthenticationProviderParseAuthenticationCallback> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.Authenticate(p0);
 }
 static void n_Deauthenticate(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Parse.Auth.IParseAuthenticationProvider __this = global::Java.Lang.Object.GetObject <global::Com.Parse.Auth.IParseAuthenticationProvider> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Deauthenticate();
 }
 static IntPtr n_GetAuthType(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Parse.Auth.IParseAuthenticationProvider __this = global::Java.Lang.Object.GetObject <global::Com.Parse.Auth.IParseAuthenticationProvider> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(JNIEnv.NewString(__this.AuthType));
 }