Skip to content

Instantly share code, notes, and snippets.

@VantivSDK
Created April 13, 2012 14:01
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/2377081 to your computer and use it in GitHub Desktop.
Save VantivSDK/2377081 to your computer and use it in GitHub Desktop.
.NET SDK - Litle Credit Transaction
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Litle.Sdk;
class Example
{
[STAThread]
public static void Main(String[] args)
{
//litleTxnId contains the Litle Transaction Id returned on the deposit
LitleOnline litle = new LitleOnline();
credit credit = new credit();
credit.litleTxnId = 100000000000000002;
creditResponse creditResponse = litle.Credit(credit);
//Display Results
Console.WriteLine("Response: " + creditResponse.response);
Console.WriteLine("Message: " + creditResponse.message);
Console.WriteLine("Litle Transaction Id: " + creditResponse.litleTxnId);
Console.ReadLine();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment