File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed
Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1+ ### v3.40.0 (2026-01-12)
2+ * * *
3+
4+ ### New Parameters:
5+ * invoice_usages has been added to HostedPage#CheckoutExistingForItemsInputParam.
6+
17### v3.39.0 (2025-12-30)
28* * *
39
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public sealed class ApiConfig
2323 {
2424 public static string DomainSuffix = "chargebee.com" ;
2525 public static string Proto = "https" ;
26- public static string Version = "3.39 .0" ;
26+ public static string Version = "3.40 .0" ;
2727 public static readonly string API_VERSION = "v2" ;
2828 public static int TimeTravelMillis { get ; set ; }
2929 public static int ExportSleepMillis { get ; set ; }
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
33 <TargetFrameworks >netstandard1.2;netstandard2.0;net45</TargetFrameworks >
4- <Version >3.39 .0</Version >
4+ <Version >3.40 .0</Version >
55 <PackageId >chargebee</PackageId >
66 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
77 <PackageProjectUrl >https://github.com/chargebee/chargebee-dotnet</PackageProjectUrl >
Original file line number Diff line number Diff line change @@ -2365,6 +2365,11 @@ public CheckoutExistingForItemsRequest ChangesScheduledAt(long changesScheduledA
23652365 m_params . AddOpt ( "changes_scheduled_at" , changesScheduledAt ) ;
23662366 return this ;
23672367 }
2368+ public CheckoutExistingForItemsRequest InvoiceUsages ( bool invoiceUsages )
2369+ {
2370+ m_params . AddOpt ( "invoice_usages" , invoiceUsages ) ;
2371+ return this ;
2372+ }
23682373 public CheckoutExistingForItemsRequest RedirectUrl ( string redirectUrl )
23692374 {
23702375 m_params . AddOpt ( "redirect_url" , redirectUrl ) ;
You can’t perform that action at this time.
0 commit comments