/// <summary> /// Gets the tax authorites. /// </summary> /// <returns>TaxAuthorityList.</returns> public TaxAuthorityList GetTaxAuthorites() { var url = baseAddress + "/taxauthorities"; var response = ZohoHttpClient.get(url, getQueryParameters()); return(SettingsParser.getTaxAuthorityList(response)); }