public void GetCompleteInvoicesTest()
        {
            // TODO: add unit test for the method 'GetCompleteInvoices'
            string        apikey   = null; // TODO: replace null with proper value
            InvoiceIDFull body     = null; // TODO: replace null with proper value
            var           response = instance.GetCompleteInvoices(apikey, body);

            Assert.IsInstanceOf <SuccessInvoices> (response, "response is SuccessInvoices");
        }
 public void Init()
 {
     instance = new InvoiceIDFull();
 }