File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
RecurringBillingSubscriptions/Subscriptions Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1313 <dependency >
1414 <groupId >com.cybersource</groupId >
1515 <artifactId >cybersource-rest-client-java</artifactId >
16- <version >0.0.77 </version >
16+ <version >0.0.78 </version >
1717 </dependency >
1818 <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
1919 <dependency >
Original file line number Diff line number Diff line change 44import Data .Configuration ;
55import Invokers .ApiClient ;
66import Invokers .ApiException ;
7+ import Model .InlineResponse20010 ;
78import Model .InlineResponse2009 ;
89import com .cybersource .authsdk .core .MerchantConfig ;
910
@@ -26,7 +27,7 @@ public static void main(String args[]) throws Exception {
2627
2728 public static void run () {
2829 String batchId = "16188390061150001062041064" ;
29- InlineResponse2009 result = null ;
30+ InlineResponse20010 result = null ;
3031 try {
3132 merchantProp = Configuration .getMerchantDetails ();
3233 ApiClient apiClient = new ApiClient ();
Original file line number Diff line number Diff line change 55import Invokers .ApiClient ;
66import Invokers .ApiException ;
77import Model .InlineResponse2008 ;
8+ import Model .InlineResponse2009 ;
9+
810import com .cybersource .authsdk .core .MerchantConfig ;
911
1012import java .lang .invoke .MethodHandles ;
@@ -26,7 +28,7 @@ public static void main(String args[]) throws Exception {
2628
2729 public static void run () {
2830 String batchId = "16188390061150001062041064" ;
29- InlineResponse2008 result = null ;
31+ InlineResponse2009 result = null ;
3032 try {
3133 merchantProp = Configuration .getMerchantDetails ();
3234 ApiClient apiClient = new ApiClient ();
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public static ActivateSubscriptionResponse run() {
3434 apiClient .merchantConfig = merchantConfig ;
3535
3636 SubscriptionsApi apiInstance = new SubscriptionsApi (apiClient );
37- response = apiInstance .activateSubscription (subscriptionId );
37+ response = apiInstance .activateSubscription (subscriptionId , null );
3838
3939 responseCode = apiClient .responseCode ;
4040 status = apiClient .status ;
You can’t perform that action at this time.
0 commit comments