Closed fastdivision closed 5 years ago
Hi Is Nuget package is updated?
On Sat, 10 Nov 2018 at 5:14 AM, Jake Johnson notifications@github.com wrote:
This PR fixes a null reference error when passing a Customer request entity to the UpdateCustomer method. Typically we check for customer_id from an anonymous object. Now we'll look for either customer_id or CustomerId.
You can view, comment on, or merge this pull request online at:
https://github.com/taxjar/taxjar.net/pull/20 Commit Summary
- Support
CustomerId
when passing request entities- Add spec
File Changes
- M src/Taxjar.Tests/Customers.cs https://github.com/taxjar/taxjar.net/pull/20/files#diff-0 (36)
- M src/Taxjar/TaxjarApi.cs https://github.com/taxjar/taxjar.net/pull/20/files#diff-1 (9)
Patch Links:
- https://github.com/taxjar/taxjar.net/pull/20.patch
- https://github.com/taxjar/taxjar.net/pull/20.diff
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/taxjar/taxjar.net/pull/20, or mute the thread https://github.com/notifications/unsubscribe-auth/AqbXQlvB6cwz3NAfg81pmQYkKp5lNeVPks5uthM_gaJpZM4YXrv8 .
-- Thanks & Regards Sreekanth
This PR fixes a null reference error when passing a
Customer
request entity to theUpdateCustomer
method. Typically we check forcustomer_id
from an anonymous object. Now we'll look for eithercustomer_id
orCustomerId
.