Releases: stripe/stripe-dotnet
Releases · stripe/stripe-dotnet
Fixed StripeSourceOptions
- fixed a bug causing the StripeSourceOptions to not be rendered properly when sending to stripe
Source is finally here!
- changed Card to Source on customers/charges/createcard
- updated the readme to reflect customers/charges/cards using Source instead of Card
- removed StripeCardList and StripeSubscriptionList in favor of using StripeList
- removed Refund from StripeChargeService (it's now used on the StripeRefundService)
- added lots of missing properties to various entities
- updated the property names on StripeCreditCardOptions to match more closely with StripeSourceOptions
Additional Connect support and billing_cycle_anchor changes
- added support for unchanged billing_cycle_anchor
- added ReverseTransfer to StripeRefundCreateOptions (StripeConnect)
Small breaking changes and additions
- Closed and Forgiven properties are now nullable on Invoices
- Amount is now nullable on InvoiceItemUpdateOptions to fix a bug where the amount could be set to zero
- StripeError now contains "decline_code"
- added the destination field to StripeChargeCreateOptions
- Transfer.Canceled has been renamed to Transfer.Reversed
- added StripeInvoiceCreateOptions and updated readme
Transfer Reversals, Refund Service, and misc new properties
- added StripeTransferReversal and supporting properties to StripeTransfer
- added the StripeRefundService
- the StripeDispute object is now available on StripeCharge
- added the MetaData property to StripeCard, StripeCardUpdateOptions, and StripeCreditCardOptions
- added BillingCycleAnchor to StripeSubscriptionCreateOptions
- fixed the Deleted property on StripeCustomer (was missing the JsonProperty attribute)
Recipient Card Support
- added a run_tests batch file (you have to compile in debug mode first so nuget downloads the console runner package)
- customer and recipient cards are now supported when creating a card
- added static types for the new stripe events and failure codes from events
- removed the obsolete attribute from StripeCustomer
v.2.7.2
bumping version
v.2.7.1
bumped version to 2.7.1
v2.7.0
Merge branch 'master' of github.com:jaymedavis/stripe.net
v.2.6.0
bumping release to 2.6.0 - caught up with stripe api changes, uses la…