Inheritance: Paging, IApiFilter
 /// <summary>
 /// GET api/PaymentOptions/GetChanges
 /// Method returns list of payment options, that were changed.
 /// </summary>
 public RowsResultWrapper<PaymentOption> Changes(ChangeFilter filter)
 {
     return Get<RowsResultWrapper<PaymentOption>>(ResourceUrl + "/GetChanges", filter);
 }
 /// <summary>
 /// GET api/VatRates/GetChanges
 /// Method returns list of the VAT rates that were changed
 /// </summary>
 public RowsResultWrapper<VatRate> Changes(ChangeFilter filter)
 {
     return Get<RowsResultWrapper<VatRate>>(ResourceUrl + "/GetChanges", filter);
 }
 /// <summary>
 /// GET api/System/GetCodeBooksChanges
 /// Provides information about system tables changes.
 /// </summary>
 public CodeBooksChanges CodeBookChanges(ChangeFilter filter)
 {
     return Get<CodeBooksChanges>(ResourceUrl + "/GetCodeBooksChanges", filter);
 }
 /// <summary>
 /// GET api/Countries/GetChanges
 /// Method returns list of countries, that were changed.
 /// </summary>
 public RowsResultWrapper<Country> Changes(ChangeFilter filter)
 {
     return Get<RowsResultWrapper<Country>>(ResourceUrl + "/GetChanges", filter);
 }
 /// <summary>
 /// GET api/ConstantSymbols/GetChanges
 /// Method returns list of constant symbols, that were changed.
 /// </summary>
 public RowsResultWrapper<ConstantSymbol> Changes(ChangeFilter filter)
 {
     return Get<RowsResultWrapper<ConstantSymbol>>(ResourceUrl + "/GetChanges", filter);
 }