Represents a period of time with second precision. The start and end date is included in the period so to cover for exampel a month, januari 2000, the start date will be 2000-01-01T00:00 and end date 2000-01-31T23:59:59
 /// <summary>
 /// Lists all chart of accounts for the company in a specific period of time.
 /// </summary>
 /// <param name="period">Limit the results by this period</param>
 /// <returns>A list of chart of accoutns</returns>
 public List<ChartOfAccounts> List(Period period)
 {
     var url = GetUrl(period.start, period.end);
     return client.Get<List<ChartOfAccounts>>(url);
 }