File tree Expand file tree Collapse file tree
src/main/java/com/chargebee Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ### v3.42.0 (2026-01-16)
2+ * * *
3+
4+ ### New Parameters:
5+ * ` applicable_item_price_ids ` has been added to Coupon#CouponListRequest.
6+ * ` applicable_item_price_ids ` has been added to Export#CouponRequest.
7+
8+ ### New Enums:
9+ * ` Twikey ` has been added to GatewayEnum.
10+
11+ ### Deleted Action:
12+ * ` move ` action has been removed from the ItemPrice.
13+
114### v3.41.0 (2026-01-12)
215* * *
316
Original file line number Diff line number Diff line change 44
55 <groupId >com.chargebee</groupId >
66 <artifactId >chargebee-java</artifactId >
7- <version >3.41 .0</version >
7+ <version >3.42 .0</version >
88
99
1010 <packaging >jar</packaging >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public class Environment {
3838
3939 public static final String API_VERSION = "v2" ;
4040
41- public static final String LIBRARY_VERSION = "3.41 .0" ;
41+ public static final String LIBRARY_VERSION = "3.42 .0" ;
4242
4343 private final String apiBaseUrl ;
4444
Original file line number Diff line number Diff line change @@ -920,6 +920,11 @@ public StringFilter<CouponListRequest> currencyCode() {
920920 }
921921
922922
923+ public StringFilter <CouponListRequest > applicableItemPriceIds () {
924+ return new StringFilter <CouponListRequest >("applicable_item_price_ids" ,this ).supportsMultiOperators (true );
925+ }
926+
927+
923928 @ Override
924929 public Params params () {
925930 return params ;
Original file line number Diff line number Diff line change @@ -954,6 +954,11 @@ public StringFilter<CouponsRequest> currencyCode() {
954954 }
955955
956956
957+ public StringFilter <CouponsRequest > applicableItemPriceIds () {
958+ return new StringFilter <CouponsRequest >("applicable_item_price_ids" ,this ).supportsMultiOperators (true );
959+ }
960+
961+
957962 public StringFilter <CouponsRequest > couponId () {
958963 return new StringFilter <CouponsRequest >("coupon[id]" ,this ).supportsMultiOperators (true );
959964 }
Original file line number Diff line number Diff line change @@ -418,12 +418,6 @@ public static ItemPriceFindApplicableItemPricesRequest findApplicableItemPrices(
418418 return new ItemPriceFindApplicableItemPricesRequest (uri );
419419 }
420420
421- @ Deprecated
422- public static MoveItemPriceRequest moveItemPrice (String id ) {
423- String uri = uri ("item_prices" , nullCheck (id ), "move" );
424- return new MoveItemPriceRequest (Method .POST , uri );
425- }
426-
427421
428422 // Operation Request Classes
429423 //==========================
@@ -1157,30 +1151,6 @@ public ItemPriceFindApplicableItemPricesRequest sortByUpdatedAt(SortOrder order)
11571151 }
11581152
11591153
1160- @ Override
1161- public Params params () {
1162- return params ;
1163- }
1164- }
1165-
1166- public static class MoveItemPriceRequest extends Request <MoveItemPriceRequest > {
1167-
1168- private MoveItemPriceRequest (Method httpMeth , String uri ) {
1169- super (httpMeth , uri );
1170- }
1171-
1172- public MoveItemPriceRequest destinationItemId (String destinationItemId ) {
1173- params .add ("destination_item_id" , destinationItemId );
1174- return this ;
1175- }
1176-
1177-
1178- public MoveItemPriceRequest variantId (String variantId ) {
1179- params .addOpt ("variant_id" , variantId );
1180- return this ;
1181- }
1182-
1183-
11841154 @ Override
11851155 public Params params () {
11861156 return params ;
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ public enum Gateway {
5656 JP_MORGAN ,
5757 DEUTSCHE_BANK ,
5858 EZIDEBIT ,
59+ TWIKEY ,
5960 GOCARDLESS ,
6061 NOT_APPLICABLE ,
6162 _UNKNOWN ; /*Indicates unexpected value for this enum. You can get this when there is a
You can’t perform that action at this time.
0 commit comments