How can I avoid making a request for each property I set on a ICashBookEntry?
ICashBookEntry cashBookEntry = session.CashBookEntry.CreateFinanceVoucher(cashBook, account, contraAccount);
cashBookEntry.Amount = amount;
cashBookEntry.Currency = currency
cashBookEntry.AmountDefaultCurrency = amountDefault;
cashBookEntry.Date = date;
cashBookEntry.Text = text;
cashBookEntry.VoucherNumber = number;
Code above generates 7 requests.
I just got an Excessive API usage warning for making more than 100.000 requests in one day.

