public static void LoadRequest(global::Com.Adobe.Mobile.TargetLocationRequest p0, global::Com.Adobe.Mobile.Target.ITargetCallback p1)
 {
     if (id_loadRequest_Lcom_adobe_mobile_TargetLocationRequest_Lcom_adobe_mobile_Target_TargetCallback_ == IntPtr.Zero)
     {
         id_loadRequest_Lcom_adobe_mobile_TargetLocationRequest_Lcom_adobe_mobile_Target_TargetCallback_ = JNIEnv.GetStaticMethodID(class_ref, "loadRequest", "(Lcom/adobe/mobile/TargetLocationRequest;Lcom/adobe/mobile/Target$TargetCallback;)V");
     }
     JNIEnv.CallStaticVoidMethod(class_ref, id_loadRequest_Lcom_adobe_mobile_TargetLocationRequest_Lcom_adobe_mobile_Target_TargetCallback_, new JValue(p0), new JValue(p1));
 }
        public static global::Com.Adobe.Mobile.TargetLocationRequest CreateRequest(string p0, string p1, global::System.Collections.Generic.IDictionary <string, global::Java.Lang.Object> p2)
        {
            if (id_createRequest_Ljava_lang_String_Ljava_lang_String_Ljava_util_Map_ == IntPtr.Zero)
            {
                id_createRequest_Ljava_lang_String_Ljava_lang_String_Ljava_util_Map_ = JNIEnv.GetStaticMethodID(class_ref, "createRequest", "(Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lcom/adobe/mobile/TargetLocationRequest;");
            }
            IntPtr native_p0 = JNIEnv.NewString(p0);
            IntPtr native_p1 = JNIEnv.NewString(p1);
            IntPtr native_p2 = global::Android.Runtime.JavaDictionary <string, global::Java.Lang.Object> .ToLocalJniHandle(p2);

            global::Com.Adobe.Mobile.TargetLocationRequest __ret = global::Java.Lang.Object.GetObject <global::Com.Adobe.Mobile.TargetLocationRequest> (JNIEnv.CallStaticObjectMethod(class_ref, id_createRequest_Ljava_lang_String_Ljava_lang_String_Ljava_util_Map_, new JValue(native_p0), new JValue(native_p1), new JValue(native_p2)), JniHandleOwnership.TransferLocalRef);
            JNIEnv.DeleteLocalRef(native_p0);
            JNIEnv.DeleteLocalRef(native_p1);
            JNIEnv.DeleteLocalRef(native_p2);
            return(__ret);
        }