stripe / stripe-dotnet

Stripe.net is a sync/async .NET 4.6.1+ client, and a portable class library for stripe.com.
Apache License 2.0
1.37k stars 570 forks source link

Remove incorrect child service methods #2981

Closed jar-stripe closed 1 month ago

jar-stripe commented 1 month ago

Why?

In the upcoming release, we are splitting child service methods from services like Checkout/Sessions/SessionService to more descriptive, self contained services e.g. SessionLineItemService. We are maintaining the old methods (now marked obsolete) for backwards compatibility purposes, but there were other methods that were also added to the parent service that we need to remove. This PR removes those methods and also restores the UpdateLines and UpdateLinesAsync methods to InvoiceService.

What?