Created
November 15, 2018 19:59
-
-
Save VantivSDK/2dd1674976a915c022deff67f3079e24 to your computer and use it in GitHub Desktop.
Java Retrieve Case Activity example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.cnp.sdk.functional; | |
import com.cnp.sdk.ChargebackRetrieval; | |
import com.cnp.sdk.generate.ChargebackRetrievalResponse; | |
public class Example { | |
public static void main(String[] args){ | |
ChargebackRetrieval cbk = new ChargebackRetrieval(); | |
ChargebackRetrievalResponse response = cbk.getChargebackByCaseId(123L); | |
System.out.println("Transaction ID:"+response.getTransactionId()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment