I am using stripe.net NuGet package. As a part of the latest update in stripe I need to replace the statement_descriptor parameter with statement_descriptor_suffix
Here is the StatementDescriptor in NuGet
currently using like this
var chargeOptions = new StripeChargeCreateOptions()
{
StatementDescriptor = statementDescriptor
};
Since package is Noneditable how to achieve this, do i need to wait for update in NuGet package or is there any other way?