}//end of constructor

        public getCalls(string username, string password, string DBID, string apiToken)
        {
            requests = new HTTPSRequests(DBID);
            this.ticket = this.authentication(username, password);
            this.apiToken = apiToken;

        }//end of constructor
        }//end of constructor

        /// <summary>
        /// This constructor is used with the new quickbase as well as enterprise quickbase
        /// </summary>
        /// <param name="username"></param>
        /// <param name="password"></param>
        /// <param name="DBID"></param>
        /// <param name="domain">Enter the full domain name with the quickbase.com</param>
        /// <param name="apiToken"></param>
        public getCalls(string username, string password, string DBID, string domain, string apiToken)
        {
            requests = new HTTPSRequests(domain,DBID);
            this.ticket = this.authentication(username, password);
            this.apiToken = apiToken;
        }