/**
         * AUTO_GENERATED
         */
        public DoUATPAuthorizationResponseType DoUATPAuthorization(DoUATPAuthorizationReq doUATPAuthorizationReq, string apiUserName)
        {
            setStandardParams(doUATPAuthorizationReq.DoUATPAuthorizationRequest);
            string      response    = Call("DoUATPAuthorization", doUATPAuthorizationReq.ToXMLString(), apiUserName);
            XmlDocument xmlDocument = new XmlDocument();

            xmlDocument.LoadXml(response);
            XmlNode xmlNode = xmlDocument.SelectSingleNode("*[local-name()='Envelope']/*[local-name()='Body']/*[local-name()='DoUATPAuthorizationResponse']");

            return(new DoUATPAuthorizationResponseType(xmlNode));
        }