public void OnSuccess(object response)
        {
            result = response.ToString();
            if (response is PushNotification)
            {
                PushNotification pushNotification = (PushNotification)response;
                Debug.Log("UserName : "******"Expiery : " + pushNotification.GetExpiry());
                Debug.Log("DeviceToken : " + pushNotification.GetDeviceToken());
                Debug.Log("pushNotification : " + pushNotification.GetMessage());
                Debug.Log("pushNotification : " + pushNotification.GetStrResponse());
                Debug.Log("pushNotification : " + pushNotification.GetTotalRecords());
                Debug.Log("pushNotification : " + pushNotification.GetType());
                Debug.Log("pushNotification : " + pushNotification.GetChannelList());
//				for(int i = 0 ; i < pushNotification.GetChannelList)
//				Debug.Log ("pushNotification : " + pushNotification.GetChannelList()[0].GetName());
//				Debug.Log ("pushNotification : " + pushNotification.GetChannelList()[0].GetName());
//				Debug.Log ("pushNotification : " + pushNotification.GetChannelList()[0].GetType());
            }
        }