You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
410 B

namespace com.hitrust.trustpay.client
{
using System;
public class IBusinessID
{
public const string B2B = "B2B";
public const string B2C = "B2C";
public const string BUSINESSTYPE = "|FUND|B2C|B2B|EBPP|MARKET|";
public const string EBPP = "EBPP";
public const string EFUND = "FUND";
public const string MARKET = "MARKET";
}
}