public void PostAuditsTest()
        {
            // TODO: add unit test for the method 'PostAudits'
            DialerAuditRequest body = null; // TODO: replace null with proper value
            int?   pageSize         = null; // TODO: replace null with proper value
            int?   pageNumber       = null; // TODO: replace null with proper value
            string sortBy           = null; // TODO: replace null with proper value
            string sortOrder        = null; // TODO: replace null with proper value
            bool?  facetsOnly       = null; // TODO: replace null with proper value
            var    response         = instance.PostAudits(body, pageSize, pageNumber, sortBy, sortOrder, facetsOnly);

            Assert.IsInstanceOf <AuditSearchResult> (response, "response is AuditSearchResult");
        }