1.6.0 (stable) / 2017-09-06
This bumps the library version to 1.6.0. A Nuget release and doc updates will follow.
Upgrade Notes
This release will upgrade us to API version 2.7. There is only 1 breaking change in this library.
Invoice will now use an enum for the CollectionMethod property instead of a string. The enum has 2 values (Automatic and Manual). Example:
// Setting
invoice.CollectionMethod = Invoice.Collection.Manual;
// Getting
if (invoice.CollectionMethod == Invoice.Collection.Automatic)
{
// do something
}