public void TC_MobileLoginDetailsAPIs()
        {
            // Mobile Login Detail Api
            MAPI_Login mal = new MAPI_Login(softassertions);

            mal.VerifyLoginDetailsAPI(GlobalVariables.username);
            mal.getstatuscode("Login Details API response code");
            softassertions.AssertAll();
        }
        public void TC_MobileTosAPIs()
        {
            //Mobile TOS API
            MAPI_Login mal = new MAPI_Login(softassertions);

            mal.VerifyMobileTosAPI();
            mal.getstatuscode("TOC API response code");
            softassertions.AssertAll();
        }
        public void TC_MobileTokenAPIs()
        {
            MAPI_Login mal = new MAPI_Login(softassertions);

            //Mobile Token API return the Authorization token
            mal.VerifyAuthToken();
            //Assert.Contains("Barer ", , "Tocken is missing");
            mal.getstatuscode("Token API response code");
            softassertions.AssertAll();
        }