Last active
November 15, 2018 18:15
-
-
Save VantivSDK/34ee1f505e48048e04a5860c796c8762 to your computer and use it in GitHub Desktop.
Java Add Note to Case 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.ChargebackUpdate; | |
import com.cnp.sdk.generate.ChargebackUpdateResponse; | |
public class Example { | |
public static void main(String[] args){ | |
ChargebackUpdate cbk = new ChargebackUpdate(); | |
ChargebackUpdateResponse response = cbk.addNoteToCase(123L, "Test added note"); | |
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