Skip to content

Instantly share code, notes, and snippets.

@VantivSDK
Created April 13, 2012 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VantivSDK/2377687 to your computer and use it in GitHub Desktop.
Save VantivSDK/2377687 to your computer and use it in GitHub Desktop.
.NET SDK - Litle Auth Reversal Transaction
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Litle.Sdk;
//Auth Reversal Transaction
class Example
{
[STAThread]
public static void Main(String[] args)
{
LitleOnline litle = new LitleOnline();
authReversal reversal = new authReversal();
//litleTxnId contains the Litle Transaction Id returned on the auth
reversal.litleTxnId = 1000000000000000000;
authReversalResponse reversalResponse = litle.AuthReversal(reversal);
//Display Results
Console.WriteLine("Response: " + reversalResponse.response);
Console.WriteLine("Message: " + reversalResponse.message);
Console.WriteLine("Litle Transaction Id: " + reversalResponse.litleTxnId);
Console.ReadLine();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment