Skip to content

1.6.0 (stable) / 2017-09-06

Choose a tag to compare

@bhelx bhelx released this 06 Sep 22:45

This bumps the library version to 1.6.0. A Nuget release and doc updates will follow.

  • Gift Card Support #241
  • Purchases Endpoint Support #240

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
}