public static void ChangeCredentialsWithAccountID(this ICTPlistInfo This, string accountID, string token, string region)
        {
            if (accountID == null)
            {
                throw new ArgumentNullException("accountID");
            }
            if (token == null)
            {
                throw new ArgumentNullException("token");
            }
            var nsaccountID = NSString.CreateNative(accountID);
            var nstoken     = NSString.CreateNative(token);
            var nsregion    = NSString.CreateNative(region);

            global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr(This.Handle, Selector.GetHandle("changeCredentialsWithAccountID:token:region:"), nsaccountID, nstoken, nsregion);
            NSString.ReleaseNative(nsaccountID);
            NSString.ReleaseNative(nstoken);
            NSString.ReleaseNative(nsregion);
        }
 public static string GetAccountRegion(this ICTPlistInfo This)
 {
     return(NSString.FromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("accountRegion"))));
 }
 public static bool GetDisableAppLaunchedEvent(this ICTPlistInfo This)
 {
     return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("disableAppLaunchedEvent")));
 }
 public static bool GetUseCustomCleverTapId(this ICTPlistInfo This)
 {
     return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("useCustomCleverTapId")));
 }
 public static string[] GetRegisteredUrlSchemes(this ICTPlistInfo This)
 {
     return(NSArray.StringArrayFromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("registeredUrlSchemes"))));
 }